Window screen.height 属性

实例

获取屏幕的总高度:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h2>height 属性</h2>
  5. <p id="demo">
  6. <script>
  7. let height = screen.height;
  8. document.getElementById("demo").innerHTML = height + "px";
  9. </script>
  10. </body>
  11. </html>

定义与用法

height 属性返回用户屏幕的总高度。

height 属性返回以像素为单位的高度。

height 属性是只读的。


备注

使用 width 属性获取用户屏幕的总宽度。


语法

  1. screen.height

返回值

类型描述
一个数字用户屏幕的总高度(以像素为单位)。

更多实例

所有 screen 属性:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h2>Screen 属性</h2>
  5. <div id="demo"></div>
  6. <script>
  7. let text = "Total width/height: " + screen.width + "*" + screen.height + "<br>" +
  8. "Available width/height: " + screen.availWidth + "*" + screen.availHeight + "<br>" +
  9. "Color depth: " + screen.colorDepth + "<br>" +
  10. "Color resolution: " + screen.pixelDepth;
  11. document.getElementById("demo").innerHTML = text;
  12. </script>
  13. </body>
  14. </html>

浏览器支持

screen.height 所有浏览器都支持:

属性
screen.height YesYesYesYesYes

相关页面

screen.availHeight 属性

screen.availWidth 属性

screen.height 属性

screen.width 属性

分类导航