What's the difference between an element and a node in XML?

前端 未结 13 1635
清酒与你
清酒与你 2020-11-28 00:57

I\'m working in Java with XML and I\'m wondering; what\'s the difference between an element and a node?

13条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-28 01:20

    Element is the only kind of node that can have child nodes and attributes.

    Document also has child nodes, BUT
    no attributes, no text, exactly one child element.

提交回复
热议问题