使用: document.doctype
document.doctype; // <!doctype html>
document.doctype === document.firstChild
注意:
1. 这个属性返回的值不是一个字符串, 而是一个对象;
2. document.firstChild 和 document.doctype一般来说是相等的;
3. 如果文档中没有声明文档类型, 则返回null
4. document节点一般用两个节点, 第一个一般是doctype, 第二个一般是html