jquery .on('click',function(event){}) 和.click(function(){})有什么区别?

Yasin92x
浏览 2291回答 2
2回答

随便27

//你都写成这样了能有多大区别?但是on()用处更多比如你可以这样写: $("xxx").on("click dblclick mouseover",function(){})//想写多少事件写多少 //或者 $("xxx").on({     "click":function(){     },     "mouseover":function(){     } }) //还有好多好多写几天也写不完

忆木偶

前者可以使动态生成的按钮绑定点击事件,后者是已经存在的按钮的点击事件
打开App,查看更多内容
随时随地看视频慕课网APP