$("table tbody").click(function(e) { e.preventDefault(); //阻止自身的事件,并不能阻止冒泡 e.stopPropagation(); //阻止事件冒泡 return false; //阻止事件冒泡});