Window outerWidth 与 outerHeight 属性

实例

获取浏览器窗口的高度和宽度:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <p>单击按钮可显示此浏览器窗口的高度和宽度(包括工具栏和滚动条)。</p>
  5. <button onclick="myFunction()">试一试</button>
  6. <p><strong>备注:</strong>IE8 及更早版本不支持 outerWidth 和 outerHeight 属性。</p>
  7. <p id="demo">
  8. <script>
  9. function myFunction() {
  10. var w = window.outerWidth;
  11. var h = window.outerHeight;
  12. document.getElementById("demo").innerHTML = "Width: " + w + "<br>Height: " + h;
  13. }
  14. </script>
  15. </body>
  16. </html>

定义与用法

outerWidth 属性返回浏览器窗口的外部宽度,包括所有界面元素(如工具栏/滚动条)。

outerHeight 属性返回浏览器窗口的外部高度,包括所有界面元素(如工具栏/滚动条)。

这些属性是只读的。

提示:使用 innerWidthinnerHeight 属性获取窗口内容区域(不带工具栏的窗口/框架)的宽度/高度。


浏览器支持

表中的数字指定完全支持该特性的第一个浏览器版本。

属性
outerWidth1.09.01.03.09.0
outerHeight1.09.01.03.09.0

语法

  1. window.outerWidthwindow.outerHeight

技术细节

返回值:一个数字,表示浏览器窗口的宽度 和/或 高度,包括所有界面元素,以像素为单位

更多实例

实例

在一个示例中演示了 innerWidth、innerHeight、outerWidth 和 outerHeight:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <div id="demo"></div>
  5. <script>
  6. var txt = "";
  7. txt += "<p>innerWidth: " + window.innerWidth + "</p>";
  8. txt += "<p>innerHeight: " + window.innerHeight + "</p>";
  9. txt += "<p>outerWidth: " + window.outerWidth + "</p>";
  10. txt += "<p>outerHeight: " + window.outerHeight + "</p>";
  11. document.getElementById("demo").innerHTML = txt;
  12. </script>
  13. </body>
  14. </html>

分类导航