jQuery on方法传递参数示例
投稿:junjie
这篇文章主要介绍了jQuery on方法传递参数示例,本文给出了一个传递3个参数的例子,需要的朋友可以参考下
教你如何给 jQuery on方法绑定的函数传递参数,代码如下:
复制代码 代码如下:
$(".loadingFlower").on("click",'',{name:"123",id:"234",tel:"345"},callback)
function callback(event){
console.log(event.data.name); //参数1 =>123
console.log(event.data.id); //参数2 =>234
console.log(event.data.tel); //参数3 =>345
}