如果一直找不到你的CSS问题,就用下面的CSS解决吧
html,body{overflow-x: hidden;}
原生JS
function bodyScroll(){e.preventDefault();
}
document.addEventListener('touchmove', bodyScroll, false); //阻止
document.removeEventListener('touchmove', bodyScroll, false); //激活
或者
document.addEventListener('touchmove', function(event) {event.preventDefault();
}, false);
或者
function stopScroll(e){document.documentElement.style.overflow='hidden';
}
jQuery
$('body').on('touchmove',function(event){event.preventDefault();});