jQuery类似as3 addeventlistener的方法- bind() 方法

liujieheng 2014-02-09

来源:flash,as,js兴趣爱好者jQuery类似as3 addeventlistener的方法- bind() 方法    bind() 方法示例
    jQuery类似as3 addeventlistener的方法- bind() 方法
    当点击鼠标事件发生时时,隐藏或显示p标签:
    $("button").bind("click",function(){
    $("p").slideToggle();
    });
    

<html> <head> <script type="text/javascript" src="http://www.w3school.com.cn/jquery/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").bind("click",function(){ $("p").slideToggle(); }); }); </script> </head> <body> <p>This is a paragraph.</p> <button>请点击这里</button> </body> </html>
Global site tag (gtag.js) - Google Analytics