js阻止页面滚动

可以快速上手的开发文档

#js阻止页面滚动
js阻止页面滚动

js阻止移动端页面滚动的两种方法

方法一:$(document).on('touchmove',function(e){e.preventDefault();})方法二:position:fixed;top:0;left:0;以上..