Tutorial XML DO...login
Tutorial XML DOM
pengarang:php.cn  masa kemas kini:2022-04-13 15:27:56

Jenis nod DOM


XML DOM Jenis Nod


DOM ialah dokumen yang mewakili hierarki objek nod.


tryitimg.gifCubalah - Contoh


Contoh di bawah menggunakan fail XML books.xml.
Fungsi loadXMLDoc(), terletak dalam JavaScript luaran, digunakan untuk memuatkan fail XML.

Paparkan nodName dan nodeType bagi semua elemen

Paparkan nodName dan nodeValue bagi semua elemen


Nod type

Jadual berikut menyenaraikan jenis nod W3C yang berbeza, setiap jenis nod mungkin mengandungi subkelas:

节点类型描述子类
Document代表整个文档(DOM 树的根节点)Element (max. one), ProcessingInstruction, Comment, DocumentType
DocumentFragment代表"轻量级"的 Document 对象,它可以保留文档中的一部分Element, ProcessingInstruction, Comment, Text, CDATASection, Entity参考手册
DocumentType为文档中定义的实体提供了一个接口None
ProcessingInstruction代表一个处理指令None
EntityReference代表一个实体引用Element, ProcessingInstruction, Comment, Text, CDATASection, EntityReference
Element表示一个元素Element, Text, Comment, ProcessingInstruction, CDATASection, EntityReference
Attr代表一个属性Text, EntityReference
Text代表元素或属性的文本内容None
CDATASection代表文档中的 CDATA 区段(文本不会被解析器解析)None
Comment代表一个注释None
Entity代表一个实体Element, ProcessingInstruction, Comment, Text, CDATASection, EntityReference
Notation定义一个在 DTD 中声明的符号None

Jenis nod - nilai pulangan

Jadual berikut menyenaraikan nama nod (nodeName) dan nilai nod (nodeValue) yang dikembalikan oleh setiap jenis nod (nodetype):

节点类型返回的节点名称返回的节点值
Document#documentnull
DocumentFragment#document fragmentnull
DocumentType文档类型名称null
Entity参考手册实体引用名称null
Element元素名称null
Attr属性名称属性值
ProcessingInstruction目标节点的内容
Comment#comment注释文本
Text#text节点的内容
CDATASection#cdata-section节点的内容
Entity实体名称null
Notation符号名称null

Jenis nod - Pemalar bernama

节点类型命名常量
1ELEMENT_NODE
2ATTRIBUTE_NODE
3TEXT_NODE
4CDATA_SECTION_NODE
5ENTITY_REFERENCE_NODE
6ENTITY_NODE
7PROCESSING_INSTRUCTION_NODE
8COMMENT_NODE
9DOCUMENT_NODE
10DOCUMENT_TYPE_NODE
11DOCUMENT_FRAGMENT_NODE
12NOTATION_NODE

Laman web PHP Cina