jQuery的 - 的iPad / iPhone - 禁用后启用滚动(jQuery - iPad/

2019-07-29 15:26发布

我在iPad上使用禁用滚动:

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

有没有办法简单地重新启用?

这将是非常有用的功能,如:

function enableScrolling() {
    // enable scrolling
}

Answer 1:

这应该工作,

var disableScroll = false;

function disableScrolling() {
    disableScroll = true;
}


function enableScrolling() {
    disableScroll = false;
}

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


文章来源: jQuery - iPad/iPhone - enable scrolling after disabling it