美文网首页
手机上获取浏览器宽高的写法

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

作者: 一無月一 | 来源:发表于2017-02-27 03:38 被阅读0次

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

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

    相关文章

      网友评论

          本文标题:手机上获取浏览器宽高的写法

          本文链接:https://www.haomeiwen.com/subject/zynawttx.html