HTML DOM defaultView 属性

HTML DOM Document对象

defaultView只读属性返回与文档关联的窗口(window)对象,如果没有可用的窗口对象,则返回为null

语法:

document.defaultView
var win = document.defaultView;
测试看看‹/›

浏览器兼容性

表中的数字指定了完全支持defaultView属性的第一个浏览器版本:

属性
defaultView9

技术细节

返回值:与文档关联的窗口对象
DOM版本:DOM级别1

更多示例

获取窗口对象的所有属性和方法:

var win = document.defaultView;

for (let x in winObj) {
items += x;
}
测试看看‹/›

HTML DOM Document对象