這篇文章主要介紹jquery事件處理的一些特徵,jquery事件命名機制的相關知識,介紹的非常詳細,具有參考借鑒價值,有興趣的朋友一起看吧
##JQuery中的bind()和unbind(),提供了事件的綁定和取消機制,既可以綁定html預設支援的事件,也能夠綁定自訂的事件。 JQuery支援自訂事件,這顯然為程式設計帶來了極大的靈活性。下面就一起學習下,jquery事件處理的一些特性。$("#button1").bind("click",function(){ alert("func1"); }); $("#button1").bind("click",function(){ alert("func2"); });
$("#button1").bind("click",sameFunc); $("#button1").bind("click",sameFunc); function sameFunc() { alert("func"); }
$("#button1").bind("mousedown mouseup",function(){ console.log(11); });
$("#button1").bind( { "mousedown":function(){ console.log("mousedown"); }, "mouseup":function(){ console.log("mouseup"); } } );
$("#button1").bind("click", {name:"aty"}, function(eventObject){ alert("params=" + eventObject.data.name); });
$("#button1").bind("click",function(eventObj){ console.log("click1"); }); $("#button1").bind("click",function(eventObj){ console.log("click2"); }); $("#button1").bind("mouseup",function(eventObj){ console.log("mouseup"); }); $("#button1").bind("mousedown",function(eventObj){ console.log("mousedown"); });
$("#button1").bind("click",function(eventObj){ console.log("click1"); }); $("#button1").bind("click",function(eventObj){ console.log("click2"); }); // try to cancel function2 $("#button1").unbind("click",function(eventObj){ console.log("click2"); });
$("#button1").bind("click",func1); $("#button1").bind("click",func2); // try to cancel function2 $("#button1").unbind("click",func2); function func1() { console.log("click1"); } function func2() { console.log("click2"); }
$("#button1").bind("click.a",function(eventObj){ console.log("click1"); }); $("#button1").bind("click.b",function(eventObj){ console.log("click2"); }); // success to cancel function2 $("#button1").unbind("click.a");
使用命名空间还要1个好处:能够按照命名空间来取消事件。
// 2个命名空间a和b $("#button1").bind("click.a",function(eventObj){ console.log("click1"); }); $("#button1").bind("click.b",function(eventObj){ console.log("click2"); }); $("#button1").bind("mouseup.a",function(eventObj){ console.log("mouseup"); }); $("#button1").bind("mousedown.a",function(eventObj){ console.log("mousedown"); });
这段代码我们使用2个命名空间a和b,如果我只想要保留第2个click事件处理函数,其余的全部删除。我们可以有2种方式达到目的:
方式1:
$("#button1").unbind("click.a"); $("#button1").unbind("mouseup"); $("#button1").unbind("mousedown");
方式2:
$("#button1").unbind(".a");
很显然方式2更加简单,更加技巧性,虽然代码更不容易看懂,不过只要你熟悉JQuery就能看懂。项目中如果出现了你看不懂的代码,只有2种情况:要么别人不行,代码写的烂;要么自己不行,知识懂的少。如果不熟悉某种语言,又怎能用它写好代码呢?所以,代码质量、开发效率,和个人技能水平,团队水平紧密相关。
以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!
相关推荐:
以上是關於jQuery事件處理的特性(事件命名機制)的詳細內容。更多資訊請關注PHP中文網其他相關文章!