码迷,mamicode.com
首页 > 其他好文 > 详细

获取窗口大小

时间:2018-12-13 14:23:31      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:mod   doc   number   height   document   ber   eof   pat   else   

var pageWidth = window.innerWidth;
var 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;
}
}

获取窗口大小

标签:mod   doc   number   height   document   ber   eof   pat   else   

原文地址:https://www.cnblogs.com/TNTS/p/10113622.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!