什么是HTMLDocument函数?

时间:2019-06-25 19:08:00

标签: javascript html htmldoc

我注意到,如果您编写这样的程序:

java -jar

它显示console.log(document); 。 然后,如果您这样做:

[object HTMLDocument]

它显示了这一点:

console.log(HTMLDocument);

因此,我想知道function HTMLDocument() { [native code] } 函数是什么,以及它的代码是什么。 谢谢!

1 个答案:

答案 0 :(得分:1)

这是HTMLDocument对象的构造函数。

Documentation

  

HTMLDocument接口,可以通过   Window.HTMLDocument属性,扩展了Window.HTMLDocument属性   包括特定于HTML文档的方法和属性。

本机代码是浏览器提供的核心功能,而不是用Java编写的代码。