我正在尝试找到DOMWindow,但它一直说它未定义。我怎么得到它?
(function() {
alert(this.constructor); // function DOMWindow() { [native code] }
alert(DOMWindow); // DOMWindow is undefiend
})();
这里有什么问题?
答案 0 :(得分:2)
也许你想要的是alert(window)
或alert(window.constructor)
? DOMWindow
是构造函数,它创建window
。
(function() {
alert(this.constructor); // function DOMWindow() { [native code] }
alert(window);
// or...
alert(window.constructor);
})();
// window shows:
// [Object DOMWindow]
// window.constructor shows:
// function DOMWindow() { [native code] }