jquery阻止事件冒泡的方法

$("table tbody").click(function(e) {
e.preventDefault(); //阻止自身的事件,并不能阻止冒泡
e.stopPropagation(); //阻止事件冒泡
    return false; //阻止事件冒泡
});
posted @ 2018-09-17 13:44  光何  阅读(527)  评论(0编辑  收藏  举报