怎样使用js+html使手机网页禁止拖动和缩放?这里知道91博客为大家总结一下:
document.ontouchmove = function(e){ e.preventDefault(); }; //文档禁止 touchmove事件
将上面的代码放到你的header中就可以禁止手机缩放了。
document.documentElement.style.webkitTouchCallout = "none";