题解 | #事件委托#
事件委托
https://www.nowcoder.com/practice/02866b3ce7f8420c8b5d22f483c5fcc0
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
</head>
<body>
<ul>
<li>.</li>
<li>.</li>
<li>.</li>
</ul>
<script type="text/javascript">
// 补全代码
let ulDom = document.querySelector('ul');
ulDom.addEventListener('click', function (e) {
e.target.innerText = '..'
})
</script>
</body>
</html>
JS重点
利用事件委派,将事件绑定到父级上,从而影响到子集。
事件绑定使用addEventListener
,注册ul使用querySeleteor