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>
  • 相关阅读:
    知多少进程?
    提高.NET应用性能
    战术设计DDD
    win7下exe文件设置为开机启动
    CQRS项目
    DDD总览
    ML.Net Model Builder
    MySQL主主复制搭建教程收集(待实践)
    MySQL主从复制搭建教程收集(待实践)
    MySQL集群方案收集
  • 原文地址:https://www.cnblogs.com/timelesszhuang/p/3678385.html
Copyright © 2011-2022 走看看