Why are Element
objects a subclass of Node
objects? Aren't elements and nodes the same thing, with different names? Or are ther开发者_如何学Goe other kinds of Node
?
Element
s are not the only node type.
Element
nodes are nodes that contain other nodes.Text
nodes are nodes that contain text.Attribute
nodes are nodes that contain attributes.
精彩评论