jquery阻止事件冒泡的方法

$("table tbody").click(function(e) {
e.preventDefault(); //阻止自身的事件,并不能阻止冒泡
e.stopPropagation(); //阻止事件冒泡
    return false; //阻止事件冒泡
});
原文地址:https://www.cnblogs.com/guanghe/p/9661653.html