js阻止移动端页面滚动的两种方法
13611606223 人气:0方法一:
$(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;
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
加载全部内容