jQuery on方法传递参数示例

前端之家收集整理的这篇文章主要介绍了jQuery on方法传递参数示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

教你如何给 jQuery on方法绑定的函数传递参数,代码如下:

代码如下:
function callback(event){
console.log(event.data.name); //参数1 =>123
console.log(event.data.id); //参数2 =>234
console.log(event.data.tel); //参数3 =>345
}

原文链接:https://www.f2er.com/jquery/57021.html

猜你在找的jQuery相关文章