Document()做什么?

时间:2016-04-07 15:23:36

标签: javascript function

我正在搞乱Chrome控制台,我找到了一个名为Document的功能(在所有网站中)。我试着查看一下,但由于Google并不区分大小写,我只是找到了有关document.getElement...()的信息。此函数似乎不是JSON对象,如document,而是实际函数。

enter image description here

这个功能是什么,它用于什么?

MDN Page似乎仍然引用document而不是Document,如下所示。

enter image description here

我刚刚在Firefox中使用内置控制台和Firebug对其进行了测试,并返回与上述屏幕截图相同的内容。

我发现MDN和W3都将document对象引用为" Document",即使Document函数与document对象不同

1 个答案:

答案 0 :(得分:1)

Document接口表示浏览器中加载的任何网页,并作为网页内容的入口点,即DOM树。 DOM树包括诸如<body><table>等元素。它提供了文档的全局功能,例如获取页面的URL和在文档中创建新元素。

https://developer.mozilla.org/en-US/docs/Web/API/document