jquery – 不推荐使用getPreventDefault() 使用defaultPrevented代替 为什么我会出现这个错误,它有什么解决方案?

前端之家收集整理的这篇文章主要介绍了jquery – 不推荐使用getPreventDefault() 使用defaultPrevented代替 为什么我会出现这个错误,它有什么解决方案?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以前我在我的代码中使用了jQuery 1.7.1。我得到上面的错误
然后我直接从google存储库中使用了jQuery 1.11.1
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.1.min.js">
</script>

但是我仍然收到这个错误。我应该如何解决这个问题?

由于这个错误我的其他jQuery功能也不工作。

我研究了很多关于解决方案的问题,但是每次我得到相同的升级jQuery版本的解决方案。但这对我来说也是不行的。

有人可以帮我在这方面吗

解决方法

尝试:
event.originalEvent.defaultPrevented

如:

$(document).on('click',function (e) {
    if (e.originalEvent.defaultPrevented) return;
    // continue
});
原文链接:https://www.f2er.com/jquery/182597.html

猜你在找的jQuery相关文章