stopPropagation()方法停止将事件冒泡到父元素,从而防止任何父处理程序收到该事件的通知。
您可以使用方法 event.isPropagationStopped()来了解是否曾经在该事件对象上调用过此方法。
stopPropagation() - 语法
event.stopPropagation()
stopPropagation() - 示例
以下是一个简单的示例,简单说明了此方法的用法。这个示例演示了如何防止其他事件处理程序被调用-
<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>
这将产生以下输出-