[问题解决]Unable to preventDefault inside passive event listener due to target being treated as passive.
Posted l-xmin
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() 就可以第一时间滚动了。
解决
方案1、注册处理函数时,用如下方式,明确声明为不是被动的
window.addEventListener('touchmove', func, { passive: false })
方案2、应用 CSS 属性 touch-action: none; 这样任何触摸事件都不会产生默认行为,但是 touch 事件照样触发。例 使用全局样式样式去掉默认行为
* { touch-action: none; }
补充:
touch-action也可取一下值
none:当触控事件发生在元素上时,不进行任何操作。因此使用none无法触摸
pan-x:启用单指水平平移手势。可以与 pan-y 、pan-up、pan-down 和/或 pinch-zoom 组合使用。
pan-y:启用单指垂直平移手势。可以与 pan-x 、pan-left 、pan-right 和/或 pinch-zoom 组合使用。
[注]未来可能所有的元素的 touchstart touchmove 事件处理函数都会默认为 passive: true
以上是关于[问题解决]Unable to preventDefault inside passive event listener due to target being treated as passive.的主要内容,如果未能解决你的问题,请参考以下文章
AS问题解决系列1—Unable to execute DX错误
解决springboot启动失败问题:Unable to start embedded container;
Unable to convert MySQL date/time value to System.DateTime问题解决方案
问题解决:Unable to establish SSL connection.