阻止事件冒泡的3种方法
实现代码:
$("#three").click(function(event) {
event.stopPropagation();
});
a.写入event.stopPropagation();
事件处理过程中,阻止了事件冒泡,但不会阻击默认行为
b.写入return false;
事件处理过程中,阻止了事件冒泡,也阻止了默认行为
c.写入event.preventDefault();
事件处理过程中,不阻击事件冒泡,但阻击默认行为
孜孜不倦,必能求索;风尘仆仆,终有归途。