时间:2021-05-26
jQuery绑定事件-多种实现方式总结
<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绑定事件-多种实现方式总结就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了jQuery绑定事件多种实现方法,供大家参考,具体内容如下$(function(){vartext=$(":text");varbutton
事件绑定的方法有很多种,使用了jquery那么原理那种绑定方式(elem.click=function(){...}))就不太想推荐给大家了。最主要的原因是el
谈论jquery中bind(),live(),delegate(),on()绑定事件方式1.Bind()$(selector).bind(event,data,
JQuery中的bind()和unbind(),提供了事件的绑定和取消机制,既可以绑定html默认支持的事件,也能够绑定自定义的事件。JQuery支持自定义事件
本文实例讲述了Jquery注册事件实现方法。分享给大家供大家参考。具体如下:事件绑定varoldColor;$(function(){//注册ID为btnTes