jQuery 中的事件方法是什么?
常用的事件方法包括 $(document).ready(), click(), dblclick() 等。有可在事件对象中调用的方法列表。
以下是可在事件对象中调用的部分方法。
序号 | 方法和说明 |
1 | preventDefault() 阻止浏览器执行默认操作。 |
2 | isDefaultPrevented() 返回 event.preventDefault() 是否曾经在此事件对象中调用过。 |
3 | isPropagationStopped() 返回 event.stopPropagation() 是否曾经在此事件对象中调用过。 |
4 | stopImmediatePropagation() 停止执行其余的处理程序。 |
让我们看一看 stopPropagation() 方法的示例。stopPropagation() 方法停止事件冒泡到父元素,阻止任何父处理程序被该事件通知。
示例
你可以尝试运行以下代码来学习如何在 jQuery 中使用事件方法 stopPropagation() −
<html> <head> <title>jQuery stopPropagation() method</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(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>
广告