美国vps服务器的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(“”);
})