stopPropagation()
优质
小牛编辑
131浏览
2023-12-01
描述 (Description)
stopPropagation()方法停止将事件冒泡到父元素,从而阻止任何父处理程序被通知事件。
您可以使用event.isPropagationStopped()方法来了解是否曾调用此方法(在该事件对象上)。
语法 (Syntax)
以下是使用此方法的简单语法 -
<i>event</i>.stopPropagation()
参数 (Parameters)
以下是此方法使用的所有参数的说明 -
NA
例子 (Example)
以下是一个简单的示例,简单地显示了此方法的用法。 此示例演示了如何阻止调用其他事件处理程序 -
<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script type = "text/javascript" language = "javascript">
$(document).ready(function() {
$("div").click(function(event){
alert("This is : " + $(this).text());
// Comment the following to see the difference
event.stopPropagation();
});
});
</script>
<style>
div{ margin:10px;padding:12px; border:2px solid #666; width:160px;}
</style>
</head>
<body>
<p>Click on any box to see the effect:</p>
<div id = "div1" style = "background-color:blue;">
OUTER BOX
<div id = "div2" style = "background-color:red;">
INNER BOX
</div>
</div>
</body>
</html>