01-事件冒泡
1.1-事件冒泡介绍
本小节知识点:介绍什么是事件冒泡
- 事件冒泡:如果一个元素的事件被触发,那么他的所有父级元素的同名事件也会被依次触发
- 元素->父元素->body->html->document->window
- 事件冒泡一直存在,只不过以前我们没有给父级元素加同名事件
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>事件冒泡</title>
<style>
.parent {
position: relative;
width: 200px;
height: 200px;
background-color: pink;
}
.son {
position: absolute;
left: 400px;
top: 300px;
width: 100px;
height: 100px;
background-color: red;
}
</style>
</head>
<body>
<div class="parent">
<div class="son"></div>
</div>
<script>
const parent = document.querySelector('.parent')
const son = parent.firstElementChild
parent.onclick = function () {
console.log('parent')
}
window.onclick = function () {
console.log('window')
}
</script>
</body>
</html>
1.2-事件冒泡利用(事件委托)
本小节知识点:介绍事件冒泡的好处
? 事件冒泡好处:如果想给父元素的多个子元素添加事件,我们可以只需要给父元素添加事件即可,然后
通过获取事件源(e.target)就可以得知是哪一个子元素触发了这个事件
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>事件冒泡 - 应用 - 事件委托</title>
<style>
li {
margin: 20px 0;
}
</style>
</head>
<body>
<ul>
<li>百里守约1</li>
<li>百里守约2</li>
<li>百里守约3</li>
</ul>
<script>
document.querySelector('ul').onmouseover = function (e) {
console.log(e.target)
console.log(e.target.nodeName)
if (e.target.nodeName === 'LI') {
e.target.style.backgroundColor = 'red'
}
}
document.querySelector('ul').onmouseout = function (e) {
if (e.target.nodeName === 'LI') {
e.target.style.backgroundColor = ''
}
}
</script>
</body>
</html>
1.3-事件冒泡影响 与 阻止事件冒泡
- 本小节知识点:介绍事件冒泡的影响
- 事件冒泡会导致需求冲突:例如我想要添加一个功能,弹出登录窗之后点击body空白区域让登陆窗消失
- 此时a标签弹出登录窗的点击事件会触发body的点击事件,导致登陆窗一出来就消失
- 解决方案:阻止事件冒泡(下一小节知识点)
本小节知识点:阻止事件冒泡
-
阻止事件冒泡:让同名事件不要在父元素中冒泡(触发) * 说人话:点击一个元素只会触发当前元素的事件,不会触发父元素的同名事件
-
语法: 事件对象.stopPropagation() IE8及之前不支持 -
事件对象.cancelBubble = true IE8之前支持 -
注意:如果想要阻止事件冒泡,一定要在触发事件的函数中接收事件对象
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>事件冒泡 - 影响 - 阻止事件冒泡</title>
<style>
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
display: block;
width: 200px;
margin: 20px auto;
}
.form {
position: relative;
width: 400px;
height: 200px;
margin: 0 auto;
text-align: center;
border: 1px solid #ccc;
display: none;
}
.form span {
display: block;
position: absolute;
right: -25px;
top: -25px;
width: 50px;
height: 50px;
text-align: center;
line-height: 50px;
border: 1px solid #ccc;
border-radius: 50%;
background-color: #fff;
cursor: pointer;
}
</style>
</head>
<body>
<a href="javascript:;">点我显示登录框</a>
<div class="form">
<span>X</span>
用户名: <input type="text" name="username"><br>
密码: <input type="password" name="password"><br>
<button>登录</button>
</div>
<script>
const a = document.querySelector('a')
const form = document.querySelector('.form')
const x = form.firstElementChild
a.onclick = function (e) {
console.log('a')
form.style.display = 'block'
console.log(e)
e.stopPropagation()
}
document.onclick = function () {
console.log('document')
form.style.display = ''
}
form.onclick = function (e) {
e.stopPropagation()
}
x.onclick = function () {
form.style.display = ''
}
</script>
</body>
</html>
02-事件捕获
1.1-事件捕获介绍
本小节知识点:事件捕获
- 1.事件冒泡:从触发事件元素,一级一级往上找父元素触发同名事件,如果有就触发
- 2.事件捕获:从最顶级的父元素一级一级往下找子元素触发同名事件,直到触发事件的元素为止
- 3.事件捕获,只能通过addEventListener并且参数写true才是事件捕获
- 其他都是冒泡(不是通过addEventListener添加、addEventListener参数为false)
- 4.事件对象.stopPropagation() 除了可以阻止冒泡还可以阻止捕获
- 5.IE8及以前没有捕获!
1.2-事件三个阶段
本小节知识点:介绍事件的三个阶段
- 1.事件一共有三个阶段:事件的执行顺序
- 2.事件对象.eventPhase 可以获得触发这个事件时,到底是哪个阶段
- 3.先从最顶级往下一级一级捕获,然后到目标的捕获,目标的冒泡,再一级一级往上冒泡
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>事件捕获</title>
</head>
<body>
<div class="box">我是小马哥</div>
<script>
window.onclick = function () {
console.log('window的冒泡事件')
}
document.onclick = function () {
console.log('document的冒泡事件')
}
const box = document.querySelector('.box')
box.onclick = function () {
console.log('box的冒泡事件')
}
window.addEventListener('click', function () {
}, true)
document.addEventListener('click', function () {
console.log('document的捕获事件')
}, true)
box.addEventListener('click', function () {
console.log('box的捕获事件')
}, true)
window.addEventListener('click', function (e) {
e.stopPropagation()
}, true)
</script>
</body>
</html>```
|