/** * 禁止手機瀏覽器拖動 */ 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'; }