目录

XML DOM - 的 NamedNodeMap 对象


NamedNodeMap 对象表示节点的无序列表。


NamedNodeMap 对象

NamedNodeMap 中的节点可以通过名称来访问。

NamedNodeMap 保持最新状态。如果在节点列表或 XML 文档中删除或添加元素,列表会自动更新。

笔记:在命名节点映射中,节点不按任何特定顺序返回。

NamedNodeMap 对象属性

Property Description
length Returns the number of nodes in the list

NamedNodeMap 对象方法

Method Description
getNamedItem() Returns the node with the specific name
getNamedItemNS() Returns the node with the specific name and namespace
item() Returns the node at the specified index
removeNamedItem() Removes the node with the specific name
removeNamedItemNS() Removes the node with the specific name and namespace
setNamedItem() Sets the specified node (by name)
setNamedItemNS() Sets the specified node (by name and namespace)