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

取消冒泡

时间:2017-09-11 17:58:13      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:def   doctype   取消   input   test   event   script   meta   blog   

w3c取消冒泡

e.stopPropagation();

IE取消冒泡

e.cancelBubble();

实例:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>取消冒泡</title>
</head>
<body>
<div id="box1" style="background: #ABCDEF; width: 300px;height: 300px;">
    <input type="button" value="test1" id="btn1">
</div>
<script>
    var btn1 = document.getElementById("btn1");
    var box1 = document.getElementById("box1");
    btn1.onclick = function (e) {
        alert("button clicked");
        var e = e||window.event;//兼容ie
        if(typeof e.cancelBubble == "undefined"){
            e.stopPropagation();
        }else {
            e.cancelBubble = true;
        }
    };
    box1.onclick = function () {
        alert("div clicked")
    };
    document.body.onclick = function () {
        alert("body clicked")
    };
    document.documentElement.onclick = function () {
        alert("html clicked")
    };
    document.onclick = function () {
        alert("document clicked")
    }
</script>
</body>
</html>

 

取消冒泡

标签:def   doctype   取消   input   test   event   script   meta   blog   

原文地址:http://www.cnblogs.com/sunxirui00/p/7505657.html

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