jQuery事件命名空间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery事件命名空间相关的知识,希望对你有一定的参考价值。
Adding a namespace to an event can make it easier to unbind. It is very easy to unbind all events with the same namespace.
//Bind Event One $("a").bind("click.nameOne", function(){ console.log("Event One Fire!"); return false; }); //Bind Event Two $("a").bind("click.nameTwo", function(){ console.log("Event Two Fire!"); return false; }); //Unbind all nameTwo events $("a.utwo").click(function(){ $("a").unbind(".nameTwo"); }); //Unbind all nameOne events $("a.uone").click(function(){ $("a").unbind(".nameOne"); });
以上是关于jQuery事件命名空间的主要内容,如果未能解决你的问题,请参考以下文章