我使用以下方法禁用了 iPad 上的滚动:
function disableScrolling() {
document.ontouchmove = function(e){
e.preventDefault();
}
}
有没有办法简单地再次启用它?
它在以下功能中特别有用:
function enableScrolling() {
// enable scrolling
}
我使用以下方法禁用了 iPad 上的滚动:
function disableScrolling() {
document.ontouchmove = function(e){
e.preventDefault();
}
}
有没有办法简单地再次启用它?
它在以下功能中特别有用:
function enableScrolling() {
// enable scrolling
}