禁止允许手机浏览器拖动

Posted 左手抓右手

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了禁止允许手机浏览器拖动相关的知识,希望对你有一定的参考价值。

/**
 * 禁止手机浏览器拖动
 */
function stopDefault(){
     window.ontouchmove = function(e){
         e.preventDefault && e.preventDefault();
         e.returnValue = false;
         e.stopPropagation && e.stopPropagation();
         return false;
     }
     document.body.style.height = ‘100%‘;
     document.body.style.overflow = ‘hidden‘;
}

/*
 * 允许手机浏览器拖动
 */
function startDefault(){
     window.ontouchmove = function(e){
         e.preventDefault && e.preventDefault();
         e.returnValue = true;
         e.stopPropagation && e.stopPropagation();
         return true;
     }
     document.body.style.height = ‘auto‘;
     document.body.style.overflow = ‘auto‘;
}

 

以上是关于禁止允许手机浏览器拖动的主要内容,如果未能解决你的问题,请参考以下文章

H5移动端浏览器拖动

禁止浏览器事件 (图片拖动)

如何禁止 alert在浏览器中弹出信息。

手机uc解除禁止访问

转载 | textarea 在浏览器中固定大小和禁止拖动

在线视频的进度条被锁定,缓冲都好了。就是不允许拖动。有啥方法可以破解