返回值:Stringevent.type

描述事件类型。

示例:

点击所有锚点后弹出事件类型。

jQuery 代码:
$("a").click(function(event) {
  alert(event.type); // "click"
});