使用js+html使手机网页禁止拖动和缩放

知道91 | Web前端 | 2015-06-09 | 阅读:18561

怎样使用js+html使手机网页禁止拖动和缩放?这里知道91博客为大家总结一下:

禁止手机拖动

document.ontouchmove = function(e){ e.preventDefault(); }; //文档禁止 touchmove事件

禁止手机缩放


将上面的代码放到你的header中就可以禁止手机缩放了。

禁止手机弹出选择菜单

document.documentElement.style.webkitTouchCallout = "none";