阻止事件冒泡
Posted 金牛座的女孩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阻止事件冒泡相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>事件模型</title>
<style>
#outer{margin: 100px 0 0 100px; width: 200px;height: 200px; background: red;}
#inner{margin-left:20px; width: 50px;height:50px; background: green;}
</style>
</head>
<body>
<div id = ‘outer‘>
<div id="inner"></div>
</div>
<script>
var click = document.getElementById(‘inner‘);
var clickouter = document.getElementById(‘outer‘);
click.addEventListener(‘click‘,function(event){
alert(‘click one‘);
// event.stopPropagation();
event.cancelBubble = true
},false);
clickouter.addEventListener(‘click‘,function(event){
alert(‘click two‘);
},false);
</script>
</body>
</html>
以上是关于阻止事件冒泡的主要内容,如果未能解决你的问题,请参考以下文章