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

Posted gsq1998

tags:

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

由于浏览器必须要在执行事件处理函数之后,才能知道有没有掉用过 preventDefault() ,这就导致了浏览器不能及时响应滚动,略有延迟。

所以为了让页面滚动的效果如丝般顺滑,从 chrome56 开始,在 window、document 和 body 上注册的 touchstart 和 touchmove 事件处理函数,会默认为是 passive: true。浏览器忽略 preventDefault() 就可以第一时间滚动了。

举例:
wnidow.addEventListener(‘touchmove‘, func) 效果和下面一句一样
wnidow.addEventListener(‘touchmove‘, func, { passive: true })

 

解决办法:

 

1. 注册处理函数时,用如下方式,明确声明为不是被动的

window.addEventListener(‘touchmove‘, func, { passive: false })


2. 为容器设置css属性touch-action,去除滑动时默认现象产生,但不影响事件触发

touch-action: none;

以上是关于报错: Unable to preventDefault inside passive event listener due to target being treated as passive(示例的主要内容,如果未能解决你的问题,请参考以下文章

git clone报错:fatal: unable to access ‘‘: SSL certificate problem: unable to get local issuer cer

tomcat报错-----》Unable to open debugger port IDEA Unable to open debugger port

Excel Web Access 报错:Unable to Load Workbook

fiddler启动报错Unable to bind to port [8888],ErrorCode:10106

unable to unroll loop 报错

npm 报错unable to verify the first certificate