Difference between e.target and e.currentTarget

后端 未结 10 1039
谎友^
谎友^ 2020-11-22 06:29

I don\'t understand the difference, they both seem the same but I guess they are not.

Any examples of when to use one or the other would be appreciated.

10条回答
  •  滥情空心
    2020-11-22 06:40

    target  is the element that triggered the event (e.g., the user clicked on)
    
    currenttarget is the element that the event listener is attached to.
    

提交回复
热议问题