阻止默认事件操作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阻止默认事件操作相关的知识,希望对你有一定的参考价值。

Description: If this method is called, the default action of the event will not be triggered.

For example, clicked anchors will not take the browser to a new URL. We can use event.isDefaultPrevented() to determine if this method has been called by an event handler that was triggered by this event.
  1. $("a").click(function(event) {
  2. event.preventDefault();
  3. //CODE
  4. });

以上是关于阻止默认事件操作的主要内容,如果未能解决你的问题,请参考以下文章

##阻止事件冒泡和取消默认操作

阻止默认事件操作

js阻止默认事件与js阻止事件冒泡示例分享 js阻止冒泡事件

js阻止浏览器元素的默认事件与js阻止事件冒泡阻止事件流

阻止事件冒泡和事件默认行为

js经常用到的代码片段