禁止页面下拉刷新 下拉加载 微信浏览器 安卓 ios都生效
//这种方法适合不用滚动页面 若页面内容过长 将不能滑动
$("body").css({'touch-action': 'none'});
document.body.addEventListener('touchmove', (e) => {
e.preventDefault();
e.stopPropagation();
}, { passive: false })
//这种方法适合不用滚动页面 若页面内容过长 将不能滑动
$("body").css({'touch-action': 'none'});
document.body.addEventListener('touchmove', (e) => {
e.preventDefault();
e.stopPropagation();
}, { passive: false })