jQuery – iPad / iPhone – 禁用后启用滚动function
我已禁用iPad上的滚动:
function disableScrolling() { document.ontouchmove = function(e){ e.preventDefault(); } }
有没有办法再次启用它?
它在以下function中特别有用:
function enableScrolling() { // enable scrolling }
这应该工作,
var disableScroll = false; function disableScrolling() { disableScroll = true; } function enableScrolling() { disableScroll = false; } document.ontouchmove = function(e){ if(disableScroll){ e.preventDefault(); } }