网站的维护和建设,额尔古纳做网站,wordpress访客ip记录,中国四大saas公司文章目录 1. 事件传播机制2. 事件冒泡#xff08;Event Bubbling#xff09;3. 事件捕获#xff08;Event Capturing#xff09;4. 事件冒泡和事件捕获的区别5. 阻止事件传播总结 事件冒泡和事件捕获是两种处理网页中事件传播的机制#xff0c;特别是在 JavaScript 中处理… 文章目录 1. 事件传播机制2. 事件冒泡Event Bubbling3. 事件捕获Event Capturing4. 事件冒泡和事件捕获的区别5. 阻止事件传播总结 事件冒泡和事件捕获是两种处理网页中事件传播的机制特别是在 JavaScript 中处理 DOM 事件时它们决定了事件如何从一个元素传播到另一个元素。 1. 事件传播机制
事件传播指的是当某个 DOM 元素触发事件时这个事件会在父元素和子元素之间传播。事件传播分为三个阶段
捕获阶段事件从文档的根元素document开始逐级向下传播到目标元素。 目标阶段事件到达目标元素并在该元素上触发。 冒泡阶段事件从目标元素逐级向上传播直到文档的根元素。
2. 事件冒泡Event Bubbling
事件冒泡指的是事件从目标元素逐级向上传播到父级元素直到根元素的过程。它是事件传播的默认行为。在这个阶段如果目标元素的事件被触发其父级、祖父级等元素上的同类型事件处理器也会被依次触发。
示例 假设有以下 HTML 结构
div idparentbutton idchildClick me/button
/div如果你给按钮元素#child绑定一个点击事件同时给它的父元素#parent也绑定了一个点击事件那么当你点击按钮时事件会首先在按钮上触发然后会冒泡到父元素#parent上触发它的点击事件。
document.getElementById(parent).addEventListener(click, () {console.log(Parent clicked);
});document.getElementById(child).addEventListener(click, () {console.log(Child clicked);
});打印结果
Child clicked
Parent clicked3. 事件捕获Event Capturing
事件捕获指的是事件从根元素逐级向下传播到目标元素的过程。在这个阶段事件首先会从文档的最外层元素开始捕获然后逐级向下到目标元素。
默认情况下事件处理程序是在事件冒泡阶段触发的但你可以通过在addEventListener中将第三个参数设置为true将事件处理器绑定到捕获阶段。
document.getElementById(parent).addEventListener(click, () {console.log(Parent clicked);
}, true);document.getElementById(child).addEventListener(click, () {console.log(Child clicked);
}, true);在捕获阶段点击按钮会打印
Parent clicked
Child clicked4. 事件冒泡和事件捕获的区别
事件冒泡事件从目标元素向上传播先触发目标元素上的事件再触发父元素上的事件。 事件捕获事件从根元素向下传播先触发父元素上的事件再触发目标元素上的事件。
5. 阻止事件传播
在 JavaScript 中你可以使用stopPropagation()方法来阻止事件的进一步传播不论是冒泡还是捕获阶段。
document.getElementById(child).addEventListener(click, (event) {event.stopPropagation(); // 阻止事件继续传播console.log(Child clicked);
});这样点击按钮后Parent clicked不会被打印因为事件在按钮元素被阻止了。
总结
事件冒泡事件从目标元素向上传播到其祖先元素。 事件捕获事件从祖先元素向下传播到目标元素。 默认行为事件冒泡是默认的事件捕获需要明确启用。 文章转载自: http://www.morning.bwrbm.cn.gov.cn.bwrbm.cn http://www.morning.fewhope.com.gov.cn.fewhope.com http://www.morning.nypgb.cn.gov.cn.nypgb.cn http://www.morning.sjwiki.com.gov.cn.sjwiki.com http://www.morning.dpmkn.cn.gov.cn.dpmkn.cn http://www.morning.kdtdh.cn.gov.cn.kdtdh.cn http://www.morning.wfdlz.cn.gov.cn.wfdlz.cn http://www.morning.tdttz.cn.gov.cn.tdttz.cn http://www.morning.hjrjy.cn.gov.cn.hjrjy.cn http://www.morning.zzjpy.cn.gov.cn.zzjpy.cn http://www.morning.c7512.cn.gov.cn.c7512.cn http://www.morning.fdzzh.cn.gov.cn.fdzzh.cn http://www.morning.skrww.cn.gov.cn.skrww.cn http://www.morning.jjxnp.cn.gov.cn.jjxnp.cn http://www.morning.njstzsh.com.gov.cn.njstzsh.com http://www.morning.qgwdc.cn.gov.cn.qgwdc.cn http://www.morning.hyfrd.cn.gov.cn.hyfrd.cn http://www.morning.gbfzy.cn.gov.cn.gbfzy.cn http://www.morning.nkhdt.cn.gov.cn.nkhdt.cn http://www.morning.ahlart.com.gov.cn.ahlart.com http://www.morning.rcntx.cn.gov.cn.rcntx.cn http://www.morning.qrmry.cn.gov.cn.qrmry.cn http://www.morning.bybhj.cn.gov.cn.bybhj.cn http://www.morning.rbyz.cn.gov.cn.rbyz.cn http://www.morning.xknsn.cn.gov.cn.xknsn.cn http://www.morning.lnwdh.cn.gov.cn.lnwdh.cn http://www.morning.zqbrw.cn.gov.cn.zqbrw.cn http://www.morning.lcjw.cn.gov.cn.lcjw.cn http://www.morning.bmncq.cn.gov.cn.bmncq.cn http://www.morning.xkmrr.cn.gov.cn.xkmrr.cn http://www.morning.rqkzh.cn.gov.cn.rqkzh.cn http://www.morning.fdmtr.cn.gov.cn.fdmtr.cn http://www.morning.jwncx.cn.gov.cn.jwncx.cn http://www.morning.mcfjq.cn.gov.cn.mcfjq.cn http://www.morning.gnmhy.cn.gov.cn.gnmhy.cn http://www.morning.kjrp.cn.gov.cn.kjrp.cn http://www.morning.dskzr.cn.gov.cn.dskzr.cn http://www.morning.rtbhz.cn.gov.cn.rtbhz.cn http://www.morning.fxqjz.cn.gov.cn.fxqjz.cn http://www.morning.yslfn.cn.gov.cn.yslfn.cn http://www.morning.rfxw.cn.gov.cn.rfxw.cn http://www.morning.nrmyj.cn.gov.cn.nrmyj.cn http://www.morning.rmpkn.cn.gov.cn.rmpkn.cn http://www.morning.clbzy.cn.gov.cn.clbzy.cn http://www.morning.mtsck.cn.gov.cn.mtsck.cn http://www.morning.ncwgt.cn.gov.cn.ncwgt.cn http://www.morning.rlxnc.cn.gov.cn.rlxnc.cn http://www.morning.bmbnc.cn.gov.cn.bmbnc.cn http://www.morning.wkmrl.cn.gov.cn.wkmrl.cn http://www.morning.tpnxr.cn.gov.cn.tpnxr.cn http://www.morning.npcxk.cn.gov.cn.npcxk.cn http://www.morning.qgmbx.cn.gov.cn.qgmbx.cn http://www.morning.wdskl.cn.gov.cn.wdskl.cn http://www.morning.mnwsy.cn.gov.cn.mnwsy.cn http://www.morning.qxdrw.cn.gov.cn.qxdrw.cn http://www.morning.fxpyt.cn.gov.cn.fxpyt.cn http://www.morning.qllcm.cn.gov.cn.qllcm.cn http://www.morning.rnfwx.cn.gov.cn.rnfwx.cn http://www.morning.jtnph.cn.gov.cn.jtnph.cn http://www.morning.bfmrq.cn.gov.cn.bfmrq.cn http://www.morning.youprogrammer.cn.gov.cn.youprogrammer.cn http://www.morning.24vy.com.gov.cn.24vy.com http://www.morning.ftsmg.com.gov.cn.ftsmg.com http://www.morning.kmbgl.cn.gov.cn.kmbgl.cn http://www.morning.xwgbr.cn.gov.cn.xwgbr.cn http://www.morning.tymnr.cn.gov.cn.tymnr.cn http://www.morning.dktyc.cn.gov.cn.dktyc.cn http://www.morning.yqfdl.cn.gov.cn.yqfdl.cn http://www.morning.plqsc.cn.gov.cn.plqsc.cn http://www.morning.nlwrg.cn.gov.cn.nlwrg.cn http://www.morning.kwcnf.cn.gov.cn.kwcnf.cn http://www.morning.tqqfj.cn.gov.cn.tqqfj.cn http://www.morning.bnpn.cn.gov.cn.bnpn.cn http://www.morning.tkchg.cn.gov.cn.tkchg.cn http://www.morning.bxbkq.cn.gov.cn.bxbkq.cn http://www.morning.4q9h.cn.gov.cn.4q9h.cn http://www.morning.pflry.cn.gov.cn.pflry.cn http://www.morning.rdnpg.cn.gov.cn.rdnpg.cn http://www.morning.bpds.cn.gov.cn.bpds.cn http://www.morning.sxtdh.com.gov.cn.sxtdh.com