嗨,有人可以帮助我绑定如何准确理解传递的事件,例如,
$("#example_button").bind("click",function(){
alert("Event is clicked");
})
$("#example_button").bind("mouseover",function(){
alert("Event is mouseover");
})
如何准确地绑定数字(识别)事件......我的意思是有什么方法可以识别事件......
嗨,有人可以帮助我绑定如何准确理解传递的事件,例如,
$("#example_button").bind("click",function(){
alert("Event is clicked");
})
$("#example_button").bind("mouseover",function(){
alert("Event is mouseover");
})
如何准确地绑定数字(识别)事件......我的意思是有什么方法可以识别事件......
查看jQuery 事件对象的type
属性:
$("a").click(function(event) {
alert(event.type); // "click"
});