$(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>

 

相关文章:

  • 2021-11-12
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-24
  • 2021-07-19
  • 2021-07-17
  • 2021-10-17
  • 2021-09-26
  • 2022-01-26
  • 2021-06-14
相关资源
相似解决方案