在国外vps的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(“”);
})