码迷,mamicode.com
首页 > 移动开发 > 详细

移动端禁止滚动

时间:2018-01-02 18:44:43      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:log   document   方法   事件   def   eve   cti   chm   移动   

1、h5界面在移动端打开,点击btn后禁止界面的滚动,采用ontouchmove事件,原理是重写ontouchmove方法

禁止:

window.document.ontouchmove = function (e) {
e.preventDefault();
};

2、重新滚动

window.document.ontouchmove = function (e) {

};

移动端禁止滚动

标签:log   document   方法   事件   def   eve   cti   chm   移动   

原文地址:https://www.cnblogs.com/simba-lkj/p/8178383.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!