jQuery --- 事件命名空间
程序员文章站
2024-01-04 17:05:16
...
条件:
1、事件必须是通过on(eventName,fn)来绑定
2、通过trigger()或者triggerHandler()来触发事件
$(function(){
$(".father").on("click.one",function(){
console.log("father.one");
})
$(".father").on("click.two",function(){
console.log("father.two");
})
$(".father").trigger("click.one")
})
以上代码,最终只会打印出father.one