jquery如何绑定事件

寻技术 JQuery 7小时前 4

jquery中绑定事件的方法有:1.使用on()函数绑定事件;2.使用bind()函数绑定事件;3.使用live()函数绑定事件;4.使用delegate()函数绑定事件;



jquery中绑定事件的方法有以下几种

1.使用on()函数绑定事件


$("#id").on("click",function(){

alert("");

})


2.使用bind()函数绑定事件


$("#id").bind("click",function(){

alert("");

})


3.使用live()函数绑定事件


$("#id").live("click",function(){

alert("");

})


4.使用delegate()函数绑定事件


$("#id").delegate("button","click",function(){

alert("");

})



关闭

用微信“扫一扫”