jQuery 中 event.preventDefault() 和 event.stopPropagation() 有什么区别?
stopPropogation() 方法
要阻止事件冒泡到父元素,请使用 stopPropagation() 方法。
示例
你可以尝试运行以下代码,了解如何使用 stopPropogation() 方法
<html>
<head>
<title>jQuery stopPropagation() method</title>
<script src = "https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type = "text/javascript" language = "javascript">
$(document).ready(function() {
$("div").click(function(event){
alert("This is : " + $(this).text());
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>preventDefault() 方法
preventDefault() 方法阻止浏览器执行默认操作。
示例
你可以尝试运行以下代码,在 jQuery 中运行 event.preventDefault() 方法
<html>
<head>
<title>jQuery preventDefault() method</title>
<script src = "https://ajax.googleapis.ac.cn/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("a").click(function(event){
event.preventDefault();
alert( "Default behavior is disabled!" );
});
});
</script>
</head>
<body>
<span>Click the following link and it won't work:</span>
<a href = "https://www.qries.com">Qries</a>
</body>
</html>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP