1、h5界面在移动端打开,点击btn后禁止界面的滚动,采用ontouchmove事件,原理是重写ontouchmove方法
禁止:
window.document.ontouchmove = function (e) {
e.preventDefault();
};
2、重新滚动
window.document.ontouchmove = function (e) {
};
标签: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