ios10中禁止用户缩放页面

ios10 通过js进行阻止用户缩放

window.onload=function () {  
        document.addEventListener('touchstart',function (event) {  
            if(event.touches.length>1){  
                event.preventDefault();  
            }  
        })  
        var lastTouchEnd=0;  
        document.addEventListener('touchend',function (event) {  
            var now=(new Date()).getTime();  
            if(now-lastTouchEnd<=300){  
                event.preventDefault();  
            }  
            lastTouchEnd=now;  
        },false)  
    }  

  

posted on 2017-02-22 14:59  玉衡逸柔  阅读(655)  评论(0编辑  收藏  举报

导航