码迷,mamicode.com
首页 > 其他好文 > 详细

阻止冒泡和事件委托

时间:2020-04-08 18:52:44      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:can   har   tle   html   col   oct   cancel   w3c   get   

p73

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
    </head>
    <body>
        <div style="width: 300px; height: 300px; background: red;">
            <div style="width: 200px; height: 200px; background: blue;"></div>
        </div>
    </body>
    <script type="text/javascript">
        var oDiv = document.getElementsByTagName("div");
        oDiv[0].onclick=function(){
            alert(a);
        }
        oDiv[1].onclick=function(e){
            var evt = e || event;
            //ie阻止冒泡
            //evt.cancelBubble = true;
            //w3c:
            evt.stopPropagation();
            alert(b);
        }
        
    </script>
</html>

 

阻止冒泡和事件委托

标签:can   har   tle   html   col   oct   cancel   w3c   get   

原文地址:https://www.cnblogs.com/chengzizhou/p/12661669.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!