jQuery 事件参考手册
显示触发了哪种类型的事件:
$("p").bind('click dblclick mouseover mouseout',function(event){ $("div").html("Event: " + event.type); });
event.type
亲自试一试
type 属性描述触发哪种事件类型。
Search: