Window innerHeight
描述
innerHeight
属性返回窗口内容区域的高度。
innerHeight
属性是只读的。
语法
window.innerHeight
或者只是innerHeight
返回值
类型 | 描述 |
数字 | 浏览器窗口内容区域的内部高度,以像素为单位。 |
更多示例
所有高度和宽度属性
let text =
"<p>innerWidth: " + window.innerWidth + "</p>" +
"<p>innerHeight: " + window.innerHeight + "</p>" +
"<p>outerWidth: " + window.outerWidth + "</p>" +
"<p>outerHeight: " + window.outerHeight + "</p>";
自己尝试 »
浏览器支持
window.innerHeight
在所有浏览器中都受支持
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 9-11 |