在此代码中:
document.getElementById()
document
是一个具有属性和方法的对象吗?
如果是,getElementById()
是该对象的方法吗?
如果不是,考虑document
和getElementById
是什么?
答案 0 :(得分:0)
是的,document
是一个对象。
typeof document; // "object"
getElementById
是该对象的属性。
答案 1 :(得分:0)
在浏览器中,document
是Document
的实例。
document instanceof Document
=> true
。
它代表整个HTML页面。
document
是window
的属性。
window.document === document
=> true
。
因此它可以用作全局对象。