欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

event.currentTarget与event.target的区别介绍_javascript技巧

程序员文章站 2022-05-04 09:46:46
...
event.currentTarget identifies the current target for the event, as the event traverses the DOM. It always refers to the element the event handler has been attached to as opposed to event.target which identifies the element on which the event occurred.
即,event.currentTarget指向事件所绑定的元素,而event.target始终指向事件发生时的元素。翻译的不专业,好拗口啊,还是直接上测试代码吧:
复制代码 代码如下:

​click here!​
当点击click here!时click会向上冒泡,输出如下:
#wrapper
​…​

​…​

*/