禁止页面下拉刷新 下拉加载 微信浏览器 安卓 ios都生效

//这种方法适合不用滚动页面 若页面内容过长 将不能滑动
$("body").css({'touch-action': 'none'});
document.body.addEventListener('touchmove', (e) => {
e.preventDefault();
e.stopPropagation();
}, { passive: false })
posted @ 2018-09-05 10:15  雾雨云露  阅读(1783)  评论(0编辑  收藏  举报