jq中的两种不同的 toggle() 方法的区别

来源:互联网 发布:visio2013网络拓扑图 编辑:程序博客网 时间:2024/06/05 18:29

  注意对比这段代码中toggle()的两种不同的使用区别

---------------------------------------------------------------------------------------------------------------------------------------------------------------

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>JQuer测试</title>
    <link rel="stylesheet" type="text/css" href="style.css" />
    <style type="text/css">
       .highlight{ background:#FF3300; }
    </style>

    <script language="javascript" src="jquery-1.3.1.js">
    </script>
    <script language = "JavaScript" type="text/javascript">
    $(function(){
        /*
        $("#panel h5.head").bind("mouseover",function(){
            $(this).next().show();
        }).bind("mouseout",function(){
            $(this).next().hide();
        });*/
        
        $("#panel h5.head").toggle(function(){
            $(this).next().toggle();
            $(this).addClass("highlight");
        },function(){
            $(this).next().toggle();
            $(this).removeClass("highlight");
            
        });
        
    });
    </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