Unable to preventDefault inside passive event listener

Posted yuzihong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unable to preventDefault inside passive event listener相关的知识,希望对你有一定的参考价值。

做人还是不能懒,不对,要懒得聪明。工作一年来经常会遇到控制台如下提示,躲不了了,就各种找资料,事实证明遇到问题一定要及时解决,不然总还会碰到的:

  

Unable to preventDefault inside passive event listener due to target being treated as passive. See https://www.chromestatus.com/features/5093566007214080

造成原因:

由于浏览器必须要在执行事件处理函数之后,才能知道有没有掉用过 preventDefault() ,这就导致了浏览器不能及时响应滚动,略有延迟。
所以为了让页面滚动的效果如丝般顺滑,从 chrome56 开始,在 window、document 和 body 上注册的 touchstart 和 touchmove 事件处理函数,会默认为是 passive: true。浏览器忽略 preventDefault() 就可以第一时间滚动了。

解决方法:

1、注册处理函数时,用如下方式,明确声明为不是被动的
window.addEventListener(‘touchmove‘, func, { passive: false })       (当触发的事件为click时 此方法可以完美的解决)

2、应用 CSS 属性 touch-action: none; 这样任何触摸事件都不会产生默认行为,但是 touch 事件照样触发。
touch-action 还有很多选项,详细请参考touch-action



以上是关于Unable to preventDefault inside passive event listener的主要内容,如果未能解决你的问题,请参考以下文章

Unable to preventDefault inside passive event listener

错误提示Unable to preventDefault inside passive event listener解决方法

[Intervention] Unable to preventDefault inside passive event listener due to target being treated as

mui执行滑动事件: Unable to preventDefault inside passive event listener

怎么解决unable to preventdefault inside passive event listener due to target

报错: Unable to preventDefault inside passive event listener due to target being treated as passive(示例