Window innerHeight 属性
定义和用法
innerHeight
属性返回窗口内容区域的高度。
innerHeight
属性是只读的。
另请参阅:
实例
例子 1
获取窗口高度:
let height = window.innerHeight;
let height = innerHeight;
例子 2
所有高度和宽度属性:
let text = "<p>innerWidth: " + window.innerWidth + "</p>" + "<p>innerHeight: " + window.innerHeight + "</p>" + "<p>outerWidth: " + window.outerWidth + "</p>" + "<p>outerHeight: " + window.outerHeight + "</p>";
语法
window.innerHeight
或者:
innerHeight
返回值
类型 | 描述 |
---|---|
数字 | 浏览器窗口内容区域的内部高度(以像素计)。 |
浏览器支持
所有浏览器都支持 window.innerHeight
:
Chrome | IE | Edge | Firefox | Safari | Opera |
---|---|---|---|---|---|
Chrome | IE | Edge | Firefox | Safari | Opera |
支持 | 9-11 | 支持 | 支持 | 支持 | 支持 |