码迷,mamicode.com
首页 > Web开发 > 详细

js阻止事件冒泡

时间:2019-07-02 21:20:35      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:code   title   ext   ima   src   阻止事件冒泡   func   ++   https   

直接上代码

<!DOCTYPE html>
<html>
<head>
    <title>js事件委托测试</title>
</head>
<body>
    <div id=‘box‘></div>
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
<style type="text/css">
    .item{
        background-color: yellow;
        margin: 10px;
        padding: 10px;
        color: black;
    }
</style>
<script type="text/javascript">
    $(document).ready(function(){

        var addItem = function(){
            htmlStr = ‘‘
            for(var i=0; i<10; i++){
                htmlStr += (`<div class="item">${i}</div>`)
            }
            $(‘#box‘).html(htmlStr)        
        }
        addItem()
        $(‘.item‘).bind(‘click‘, function(event){
            alert(‘item‘)
            event.stopPropagation()// 阻止冒泡
        })
        $(‘#box‘).bind(‘click‘, function(event){
            alert(‘box‘)
        })
    })
</script>
</body>
</html>

 

jquery.bind()

查询官方api可看见回调方法传入值为event, 通过event就能阻止事件后续传播

技术图片

 

js事件模型

技术图片

 

 

 参考

深入理解js事件机制

js阻止事件冒泡

标签:code   title   ext   ima   src   阻止事件冒泡   func   ++   https   

原文地址:https://www.cnblogs.com/lurenjia1994/p/11122992.html

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