禁止允许手机浏览器拖动
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‘; }
以上是关于禁止允许手机浏览器拖动的主要内容,如果未能解决你的问题,请参考以下文章