event.preventDefault和event.stopPropagation

preventDefault() 方法阻止元素发生默认的行为(例如,当点击提交按钮时阻止对表单的提交)。
event.stopPropagation() 方法阻止事件冒泡到父元素,阻止任何父事件处理程序被执行。

你可能感兴趣的:(event.preventDefault和event.stopPropagation)