XML DOM(文档对象模型)中的节点树是 XML 文档表示的树状结构,其中每个节点都是树中的一个分支。这个树状结构被称为 DOM 树,它从文档节点开始,包含了整个 XML 文档的层次结构。

以下是一个简单的示例,展示了 XML DOM 节点树的结构:

考虑以下 XML 文档:
<bookstore>
  <book category="Fiction">
    <title>Harry Potter and the Philosopher's Stone</title>
    <author>J.K. Rowling</author>
  </book>
  <book category="Non-Fiction">
    <title>The Elements of Style</title>
    <author>William Strunk Jr.</author>
  </book>
</bookstore>

对应的 XML DOM 节点树结构如下: