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

jQuery on方法传递参数示例_jquery

程序员文章站 2022-05-16 15:18:24
...
教你如何给 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
}