返回值:Elementevent.currentTarget

事件冒泡阶段当前所在DOM元素。

这个属性通常与函数的 this 相同。

如果你使用了 jQuery.proxy 或其他方式操作了作用域, this 会等于你所指定的内容,而不再是 event.currentTarget

示例:

如果 currentTarget 完全等同于 `this` 则弹出警告框。

jQuery 代码:
$("p").click(function(event) {
  alert( event.currentTarget === this ); // true
});