2

嗨,有人可以帮助我绑定如何准确理解传递的事件,例如,

$("#example_button").bind("click",function(){
    alert("Event is  clicked");
})

$("#example_button").bind("mouseover",function(){
    alert("Event is mouseover");
})

如何准确地绑定数字(识别)事件......我的意思是有什么方法可以识别事件......

4

1 回答 1

3

查看jQuery 事件对象的type属性:

$("a").click(function(event) {
  alert(event.type); // "click"
}); 
于 2012-06-26T15:20:15.040 回答