jQuery event.stopPropagation() 方法

返回上一级

jQuery event.stopPropagation() 方法阻止事件冒泡到父元素,阻止任何父事件处理程序被执行

请使用 event.isPropagationStopped() 方法来检查指定的事件上是否调用了该方法

语法

event.stopPropagation()

参数

参数 描述
event 必需。event 参数来自事件绑定函数

范例

阻止 click 事件冒泡到父元素

$("span").click(function(event){
    event.stopPropagation();  
    alert("The span element was clicked.");
});

$("p").click(function(event){
    alert("The p element was clicked.");
});

$("div").click(function(){
    alert("The div element was clicked.");
});

运行范例 »

返回上一级

jQuery 参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.