ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC] ## 1.Document类型 document对象是HTMLDocument的一个实例,表示整个HTML页面。document对象是window对象的一个熟悉 ~~~ console.log(document instanceof HTMLDocument) ~~~ document节点有以下特征 ~~~ - nodeType的值为9 - nodeName为"#document" - nodeValue值为null - parentNode的值为null - ownerDocument值为null ~~~ ### 1.1文档的子节点 * * * * * - #### document.Element //取得html的引用 ~~~ console.log(document.documentElement === document.childNodes[1]) ~~~ - #### document.body //取得body引用 - #### document.doctype //取得文档的类型 ~~~ console.log(document.doctype) //<!DOCTYPE html> ~~~