target与currentTarget的区别
Posted M.Ling
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了target与currentTarget的区别相关的知识,希望对你有一定的参考价值。
我的理解在下面的代码中显示,currentTarget比target来的更具体些,点那个就是哪个
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>target与currentTarget区别</title> <style> #box{ width: 500px; height: 200px; background-color: blue; } </style> </head> <body> <div onclick="getClick(event)" id="box"> <h1 onclick="getClick(event)" id="boxh">我是h1标签</h1> </div> <script> var box = document.querySelector(‘#box‘); var boxh = document.querySelector(‘#boxh‘); function getClick(event){ a = event.currentTarget; b = event.target; alert("currentTarget 指向: " + a.id + ", target指向:" + b.id) } </script> </body> </html>
以上是关于target与currentTarget的区别的主要内容,如果未能解决你的问题,请参考以下文章
event.target与event.currentTarget的区别
小程序获取到的e.target与e.currentTarget区别
小程序中e.target与e.currentTarget区别详解