其内部元素上的点击事件冒泡 $('.son1').click(function (event) { event.stopPropagation(); }); $('.son1 .some-specific-child').click(function (event) { event.stopPropagation(); }); });