标签:pre com 使用 处理程序 dde 参数 cti 传递 inter
1.滑动时候警告[Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive.
2.解决方案
在touch的事件监听方法上绑定第三个参数{ passive: false },
通过传递 passive 为 false 来明确告诉浏览器:事件处理程序调用 preventDefault 来阻止默认滑动行为。
elem.addEventListener( ‘touchstart‘, fn, { passive: false } );
* { touch-action: pan-y; } // 使用全局样式样式去掉
.
标签:pre com 使用 处理程序 dde 参数 cti 传递 inter
原文地址:https://www.cnblogs.com/crazycode2/p/9692171.html