shimily
window.ontouchmove=function(e){   /*禁止页面滚动*/
        e.preventDefault && e.preventDefault();
        e.returnValue=false;
        e.stopPropagation && e.stopPropagation();
        return false;
     }


 window.ontouchmove=function(e){  /*解除禁止*/
        e.preventDefault && e.preventDefault();
        e.returnValue=true;
        e.stopPropagation && e.stopPropagation();
        return true;
 }

 

分类:

技术点:

相关文章: