如果阻止当前页面滚动?
一个页面如果有2-3页那么长。我想点击一个按钮后,页面不能滚动了。类似网页实现静止滚动:
1,var move = window.document.ontouchmove;//保存默认触摸事件
2,//禁止触摸
window.document.ontouchmove = function (e) {
e.preventDefault();
};
3,//恢复触摸
window.document.ontouchmove = move;