H5如何禁止ios webview系统默认滚动效果

document.body.addEventListener('touchmove', e => {
     e.preventDefault();
  });

禁止掉body的默认效果就可以了

发布了190 篇原创文章 · 获赞 37 · 访问量 30万+

猜你喜欢

转载自blog.csdn.net/sufubo/article/details/104045745