手机浏览器如何默认隐藏顶部导航栏和底部的状态栏,求大神支招!!!

目前已试用了mate标签处理,但只有QQ浏览器可以其它浏览器都不兼容,js没有达到预期效果只能上滑才能隐藏,想要默认隐藏,
以下是我用添加的mate标签和js方法:


























window.οnlοad=function(){
if(document.documentElement.scrollHeight <= document.documentElement.clientHeight) {
bodyTag = document.getElementsByTagName(‘body’)[0];
bodyTag.style.height = document.documentElement.clientWidth / screen.width * screen.height + ‘px’;
}
setTimeout(function() {
window.scrollTo(0, 1)
}, 0);
};

你可能感兴趣的:(手机浏览器隐藏导航栏和状态栏)