$("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 })
//不适合滚动页面 若页面内容过长 将不能滑动