什么是 HTMLDocument 函数?
What is the HTMLDocument function?
我注意到如果你写这样的程序:
console.log(document);
显示[object HTMLDocument]
。
然后,如果你这样做:
console.log(HTMLDocument);
它显示了这个:
function HTMLDocument() {
[native code]
}
所以,我想知道 HTMLDocument
函数是什么,它的代码是什么。
谢谢!
这是 HTMLDocument 对象的构造函数。
The HTMLDocument interface, which may be accessed through the
Window.HTMLDocument property, extends the Window.HTMLDocument property
to include methods and properties that are specific to HTML documents.
本机代码是浏览器提供的核心功能,而不是用 Javascript 编写的代码。
我注意到如果你写这样的程序:
console.log(document);
显示[object HTMLDocument]
。
然后,如果你这样做:
console.log(HTMLDocument);
它显示了这个:
function HTMLDocument() {
[native code]
}
所以,我想知道 HTMLDocument
函数是什么,它的代码是什么。
谢谢!
这是 HTMLDocument 对象的构造函数。
The HTMLDocument interface, which may be accessed through the Window.HTMLDocument property, extends the Window.HTMLDocument property to include methods and properties that are specific to HTML documents.
本机代码是浏览器提供的核心功能,而不是用 Javascript 编写的代码。