码迷,mamicode.com
首页 > Web开发 > 详细

JS获取浏览器可视区域尺寸

时间:2014-07-07 00:22:43      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   width   html   htm   

在没有声明DOCTYPE的IE中,浏览器显示窗口大小只能以下获取:

document.body.offsetWidth
document.body.offsetHeight

在声明了DOCTYPE的浏览器中,可以用以下来获取浏览器显示窗口大小:

document.documentElement.clientWidth
document.documentElement.clientHeight

IE,FF,Safari皆支持该方法,opera虽支持该属性,但是返回的是页面尺寸;

同时,除了IE以外的所有浏览器都将此信息保存在window对象中,可以用以下获取:

window.innerWidth
window.innerHeight

  

JS获取浏览器可视区域尺寸,布布扣,bubuko.com

JS获取浏览器可视区域尺寸

标签:style   blog   color   width   html   htm   

原文地址:http://www.cnblogs.com/songmz/p/3822431.html

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