布局如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
html,
body {
margin: 0;
margin: 0;
height: 100%;
}
.container {
width: 100%;
height: 500px;
position: relative;
background: rgb(244, 235, 235);
}
.node {
width: 400px;
height: 200px;
position: absolute;
top: 150px;
left: 60px;
background: rgb(227, 181, 181);
}
.row{
margin: 5px 0;
background: gray;
height: 50px;
}
</style>
</head>
<body>
<div class="container">
<div class="node">
<div class="row">11111</div>
<div class="row">
<span style="background: red;">2222</span>
<span style="background: red; margin-left: 30px;">444</span>
</div>
</div>
</div>
</body>
</html>
在容器container
上绑定了点击
监听事件,node
里面的布局如下,可能层级更多,如何判断,当点击node里面的任何dom元素时,都表示点击的是node
节点?
使用 JavaScript 的 Element.closest() 方法来实现