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

阻止事件冒泡

时间:2015-01-13 13:57:02      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:

<div id="content">
    外层div元素
    <span>内层span元素</span>
    外层div元素
</div>

<div id="msg"></div>
$(function(){
       // 为span元素绑定click事件
    $(‘span‘).bind("click",function(event){
        var txt = $(‘#msg‘).html() + "<p>内层span元素被点击.<p/>";
        $(‘#msg‘).html(txt);
        event.stopPropagation();    //  阻止事件冒泡
    });
    // 为div元素绑定click事件
    $(‘#content‘).bind("click",function(event){
        var txt = $(‘#msg‘).html() + "<p>外层div元素被点击.<p/>";
        $(‘#msg‘).html(txt);
        event.stopPropagation();    //  阻止事件冒泡
    });
    // 为body元素绑定click事件
    $("body").bind("click",function(){
        var txt = $(‘#msg‘).html() + "<p>body元素被点击.<p/>";
        $(‘#msg‘).html(txt);
    });
})

 

阻止事件冒泡

标签:

原文地址:http://www.cnblogs.com/web-leader/p/4220996.html

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