zoukankan      html  css  js  c++  java
  • jquery 事件绑定(1)

    
    
    $(function(){
        $("#panel h5.head").bind("click",function(){
            $(this).next().show();
        })
    })
    
    $(function(){
        $("#panel h5.head").bind("click",function(){
            var $content = $(this).next();
            if($content.is(":visible")){
                $content.hide();
            }else{
                $content.show();
            }
        })
    })
    
    $(function(){
        $("#panel h5.head").bind("mouseover",function(){
             $(this).next().show();
        }).bind("mouseout",function(){
             $(this).next().hide();
        })
    })
    
    $(function(){
        $("#panel h5.head").mouseover(function(){
            $(this).next().show();
        }).mouseout(function(){
            $(this).next().hide();
        })
    })

    公共页面

    </head> <body> <div id="panel"> <h5 class="head">什么是jQuery?</h5> <div class="content"> jQuery是继Prototype之后又一个优秀的JavaScript库,它是一个由 John Resig 创建于2006年1月的开源项目。jQuery凭借简洁的语法和跨平台的兼容性, 极大地简化了JavaScript开发人员遍历HTML文档、操作DOM、处理事件、执行动画和开发Ajax。它独特而又优雅的代码风格改变了JavaScript程序员的设计思 路和编写程序的方式。 </div> </div> </body>
  • 相关阅读:
    Generator函数介绍
    C语言基础三
    C语言基础二
    C语言基础一
    node——路由控制
    Node.js_HTTP模块
    node_Express安装及检验
    conda Pyhon版本切换
    JAVA泛型里面各值代表的意义
    jq实现表格多行列复制
  • 原文地址:https://www.cnblogs.com/timelesszhuang/p/3678385.html
Copyright © 2011-2022 走看看