DocumentType类型
Posted gaoxuerong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DocumentType类型相关的知识,希望对你有一定的参考价值。
<!DOCTYPE XML> <xml> <head> <meta charset="UTF-8"> <title>DocumentType类型</title> </head> <body> </body> <script> /* nodeType 的值为 10; nodeName 的值为 doctype 的名称; nodeValue 的值为 null; parentNode 是 Document; 不支持(没有)子节点。 DocumentType 的 name 属性中保存的就是"html" 在 DOM1 级中,DocumentType 对象不能动态创建,而只能通过解析文档代码的方式来创建。支 持它的浏览器会把 DocumentType 对象保存在 document.doctype 中 。 DOM1 级描述了 DocumentType 对象的 3 个属性:name、entities 和 notations。其中,name 表示文档类型的名称; entities 是由文档类型描述的实体的 NamedNodeMap 对象;notations 是由文档类型描述的符号的 NamedNodeMap 对象。 IE 及更早版本不支持 DocumentType,因此 document.doctype 的值始终都等于 null。可是, 这些浏览器会把文档类型声明错误地解释为注释,并且为它创建一个注释节点。IE9 会 给 document.doctype 赋正确的对象,但仍然不支持访问 DocumentType 类型。*/ console.log(document.doctype.name); //xml </script> </xml>
以上是关于DocumentType类型的主要内容,如果未能解决你的问题,请参考以下文章
UIDocumentPickerViewController(documentType:in) 在 iOS 14 中已弃用