jQuery 事件 - type 属性

实例

显示触发了哪种类型的事件:

  1. $("p").bind('click dblclick mouseover mouseout',function(event){
  2. $("div").html("Event: " + event.type);
  3. });

定义和用法

type 属性描述触发哪种事件类型。

语法

  1. event.type
参数 描述
event 必需。规定要检查的事件。这个 event 参数来自事件绑定函数。