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

前端 未结 13 1715
清酒与你
清酒与你 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:01

    A Node is a part of the DOM tree, an Element is a particular type of Node

    e.g. This is Text

    You have a foo Element, (which is also a Node, as Element inherits from Node) and a Text Node 'This is Text', that is a child of the foo Element/Node

提交回复
热议问题