NamedNodeMap
The NamedNodeMap
interface represents a collection of Attr objects.
Properties
Functions
The getNamedItem()
method of the NamedNodeMap interface returns the Attr corresponding to the given name, or null
if there is no corresponding attribute.
The getNamedItemNS()
method of the NamedNodeMap interface returns the Attr corresponding to the given local name in the given namespace, or null
if there is no corresponding attribute.
The removeNamedItem()
method of the NamedNodeMap interface removes the Attr corresponding to the given name from the map.
The removeNamedItemNS()
method of the NamedNodeMap interface removes the Attr corresponding to the given namespace and local name from the map.
The setNamedItem()
method of the NamedNodeMap interface puts the Attr identified by its name in the map.
The setNamedItemNS()
method of the NamedNodeMap interface puts the Attr identified by its name in the map.