jq toggle()方法的重写

来源:互联网 发布:自己播音软件 编辑:程序博客网 时间:2024/06/06 03:42
<html>
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>JQuer测试</title>
    <style type="text/css">
        *{margin:0;padding:0;}    
        body { font-size: 13px; line-height: 130%; padding: 60px }
        #panel { width: 300px; border: 1px solid #0050D0 }
        .head { padding: 5px; background: #96E555; cursor: pointer }
        .content { padding: 10px; text-indent: 2em; border-top: 1px solid #0050D0;display:block;display:none; }
    </style>
    <script language="javascript" src="jquery-1.11.1.min.js">
    </script>
    <script language = "JavaScript" type="text/javascript">
    
    $(function(){
        /*
        $("#panel h5.head").bind("click",function(){
            $(this).next().toggle();
        })*/
        $("#panel h5.head").bind("click",function(){
            if( $(this).next().is(":visible")){
                $(this).next().hide();
            }else{
                $(this).next().show();
            }
        });
    })
    </script>
</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>
</html>
0 0