jQuery 事件 - type 属性实例定义和用法语法jQuery 事件 - type 属性实例显示触发了哪种类型的事件: $("p").bind('click dblclick mouseover mouseout',function(event){ $("div").html("Event: " + event.type);}); 定义和用法type 属性描述触发哪种事件类型。 语法event.type 参数 描述 event 必需。规定要检查的事件。这个 event 参数来自事件绑定函数。