手机上获取浏览器宽高的写法

解决被微信标题栏挡住的问题
UC,猎豹手机浏览器:仍被上方地址栏和下方菜单栏挡住

var getScreenSize = function(){
      window.scrWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
      window.scrHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;

};

你可能感兴趣的:(手机上获取浏览器宽高的写法)