Window innerWidth 和 innerHeight 属性 Window innerWidth 和 innerHeight 属性 Window localStorage 属性 Window innerWidth 和 innerHeight 属性 定义和用法 innerheight 返回窗口的文档显示区的高度。 innerwidth 返回窗口的文档显示区的宽度。 注意: 使用 outerWidth 和 outerHeight 属性获取加上工具条与滚动条窗口的宽度与高度。 语法 获得: window.innerWidth window.innerHeight 设置: window.innerWidth= _pixels_ window.innerHeight _=pixels_ 浏览器支持 所有主流浏览器都支持 innerWidth 和 innerHeight 属性。 注意:IE 8 及更早 IE版本不支持这两个属性。 实例 获取窗口的高度与宽度(不包含工具条与滚动条): var w=window.innerWidth; var h=window.innerHeight; 试一试 » Window innerWidth 和 innerHeight 属性 Window localStorage 属性