`

禁止IOS 上的web应用全屏显示滚动

阅读更多

if(ua.match(/ipad/i)=="ipad" || ua.match(/iphone/i)=="iphone"){
            //禁止web应用全屏显示时页面可以滚动
            document.ontouchmove = function(e){
                if (document.body.scrollHeight == document.body.clientHeight){
                    event.preventDefault();
                }
            } 
}  

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics