[Intervention] Unable to prevent

作者: 您好简书 | 来源:发表于2019-07-03 14:20 被阅读12次

1.滑动时候警告[Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive.

image

2.解决方案

解决办法1:

在touch的事件监听方法上绑定第三个参数{ passive: false },
通过传递 passive 为 false 来明确告诉浏览器:事件处理程序调用 preventDefault 来阻止默认滑动行为。

elem.addEventListener(

'touchstart'``,

fn,

{ passive: ``false }

);

|

解决办法2:

* { touch-action: pan-y; }

// 使用全局样式样式去掉

相关文章

网友评论

    本文标题:[Intervention] Unable to prevent

    本文链接:https://www.haomeiwen.com/subject/aoeqhctx.html