jQuery绑定事件-多种实现方式总结
内容摘要
jQuery绑定事件-多种实现方式总结
<html>
<head>
<meta charset="utf-8" />
<script src=https://pan.baidu.com/s/1o8GiuOq?qq-pf-to=pcqq.c2c></script>
</head>
<
<html>
<head>
<meta charset="utf-8" />
<script src=https://pan.baidu.com/s/1o8GiuOq?qq-pf-to=pcqq.c2c></script>
</head>
<
文章正文
jQuery绑定事件-多种实现方式总结
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | <html> <head> <meta charset= "utf-8" /> <script src=https: //pan.baidu.com/s/1o8GiuOq?qq-pf-to=pcqq.c2c></script> </head> <body> <input type= "text" /> <input type= "button" value= "button1" /> <script> $( function (){ var text = $( ":text" ); var button = $( ":button" ); //调试器记录日志 console.log("message"); 如:火狐浏览器,打开FireBug(按F12) //触发单个事件:两种方式 button.bind( "mouseover" , function (){ console.log( "移入" ); }); button.bind({ "mouseout" : function (){ console.log( "移出" ); } }); //多个事件:三个方式 text.bind( "dblclick blur" , function (){ console.log( "双击或者失去焦点" ); }); text.bind({ "dblclick blur" : function (){ console.log( "双击或者失去焦点" ); } }); text.bind({ "dblclick" : function (){ console.log( "双击" ); }, blur: function (){ console.log( "失去焦点" ); } }); //取消事件 text.unbind( "dblclick" ); //取消单个事件 //text.unbind("dblclick blur"); //取消多个事件 //text.unbind(); //取消全部事件 }); </script> </body> </html> |
以上这篇jQuery绑定事件-多种实现方式总结就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持phpstudy。
代码注释