outerWidth只读属性返回整个浏览器窗口(包括滚动条)的宽度(以像素为单位)。
使用innerWidth属性获取正在显示的页面的宽度。
window.outerWidth
var h = window.outerHeight; var w = window.outerWidth;测试看看‹/›
表中的数字指定了完全支持outsideWidth属性的第一个浏览器版本:
属性 | |||||
outerWidth | 1 | 1 | 9 | 3 | 9 |
返回值: | 一个数字,表示整个浏览器窗口的宽度,以像素为单位 |
---|
此示例在一个示例中显示了innerWidth,innerHeight,outerWidth和externalHeight:
var txt = ""; txt += "<p>innerWidth: " + window.innerWidth + "</p>"; txt += "<p>innerHeight: " + window.innerHeight + "</p>"; txt += "<p>outerWidth: " + window.outerWidth + "</p>"; txt += "<p>outerHeight: " + window.outerHeight + "</p>"; document.write(txt);测试看看‹/›
窗口(Window)参考:window.innerHeight属性
窗口(Window)参考:window.innerWidth属性
窗口(Window)参考:window.outerHeight属性