示例
下例演示了检查 event.stopPropagation() 是否被调用:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>欢迎来到蝴蝶教程</title>
//此版本是百度cdn 1.11.1,当然你可以使用更高的版本,从2.0版本以上的是不支持ie6-8的
<script type="text/javascript" src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("div").click(function(event){
event.stopPropagation();
alert("检测event.stopPropagation()是否被调用: "+event.isPropagationStopped());
});
});
</script>
</head>
<body>
<div style="height:100px;width:500px;padding:10px;border:1px solid red;">
点击这个 div 元素。
</div>
</body>
</html>
尝试一下