移动端阻止页面拖动

document.body.addEventListener('touchmove', function (e) {
  e.preventDefault(); //阻止默认的处理方式(阻止下拉滑动的效果)
}, {passive: false}); //passive 参数不能省略,用来兼容ios和android

猜你喜欢

转载自blog.csdn.net/supertree_l/article/details/81532099