防止iOS 11.3溢出弹跳

从现在开始,我一直在使用touchmove事件的preventDefault技术,当时我发现它在iOS 11.3上不再适用,无论是Safari还是Chrome或Firefox:

document.ontouchmove = function(event){
    event.preventDefault();
} 

iOS中有什么变化吗? 什么是防止在页面顶部或底部弹跳的方式?

在线复制

使用jQuery在线复制

视频在这里:

在这里输入图像描述


这是由WebKit的一个错误引起的。 错误182521

尝试window.addEventListener("touchstart", preventBouncing, {passive: false} ); 作为解决方法。

链接地址: http://www.djcxy.com/p/41577.html

上一篇: Prevent iOS 11.3 overflow bouncing

下一篇: How to find out the AD Junk present in the device?