欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

上一篇:

下一篇: