js或jquery阻止向上冒泡事件
如果我们想要的点击事件的上层还有一个点击事件,正常情况下会出发两次点击事件,但是我们只想要其本身的点击事件,那么就需要阻止其向上冒泡了。
直接看代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div id="first">
外层
<span id="second">
内层
</span>
</div>
<script type="text/javascript" src="js/jquery-3.1.1.min.js" ></script>
<script>
$("#first").click(function(){
console.log("外层")
})
$("#second").click(function(event){
event.stopPropagation();
console.log("内层")
})
</script>
</body>
</html>