`
DAQIQIU
  • 浏览: 21725 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

js 获取页面宽高

    博客分类:
  • js
阅读更多
var pageWidth = window.innerWidth,
    pageHeight = window.innerHeight;
if (typeof pageWidth != “number”){
    if (document.compatMode == “CSS1Compat”){
        pageWidth = document.documentElement.clientWidth;
        pageHeight = document.documentElement.clientHeight;
    } else {
        pageWidth = document.body.clientWidth;
        pageHeight = document.body.clientHeight;
    }
}

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics