JavaScript

超轻量级php框架startmvc

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

更新时间:2020-04-21 00:27:39 作者:startmvc
方法一:$(document).on('touchmove',function(e){e.preventDefault();})方法二:position:fixed;top:0;left:0;以上

方法一:


 $(document).on('touchmove',function(e){
 e.preventDefault();
 })

方法二:

position: fixed;top:0;left: 0;

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持脚本之家!

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