当前位置:Gxlcms > JavaScript > event.currentTarget与event.target的区别介绍_javascript技巧

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

时间:2021-07-01 10:21:17 帮助过:16人阅读

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会向上冒泡,输出如下:
#inner
​click here!​​
​click here!​​
#wrapper
​…​

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

​…​

*/

人气教程排行