gpt4 book ai didi

javascript - stopPropagation 与 stopImmediatePropagation

转载 作者:IT老高 更新时间:2023-10-28 13:11:49 27 4
gpt4 key购买 nike

event.stopPropagation()event.stopImmediatePropagation()有什么区别?

最佳答案

stopPropagation 将阻止任何 处理程序被执行 stopImmediatePropagation 将阻止任何父处理程序 以及 任何 < strong>其他处理程序执行

来自 jquery documentation: 的快速示例

$("p").click(function(event) {
event.stopImmediatePropagation();
});

$("p").click(function(event) {
// This function won't be executed
$(this).css("background-color", "#f00");
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<p>example</p>

注意这里事件绑定(bind)的顺序很重要!

$("p").click(function(event) {
// This function will now trigger
$(this).css("background-color", "#f00");
});

$("p").click(function(event) {
event.stopImmediatePropagation();
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<p>example</p>

关于javascript - stopPropagation 与 stopImmediatePropagation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5299740/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com