jquery学习(2)toggle

$(function(){
    $("#panel h5.head").hover(function(){    //交替执行该函数
        $(this).next().show();
    },function(){
        $(this).next().hide();   
    })
})
$(function(){
    $("#panel h5.head").toggle(function(){
            $(this).next().show();
    },function(){
            $(this).next().hide();
    })
})

$(function(){
    $("#panel h5.head").toggle(function(){
            $(this).addClass("highlight");
            $(this).next().show();
    },function(){
            $(this).removeClass("highlight");
            $(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>


原文地址:https://www.cnblogs.com/timelesszhuang/p/3678411.html