![]() |
Using the XMLDOMNamedNodeMap Object
An XMLDOMNamedNodeMap
Gathering Information About the Named Node MapJust like the XMLDOMNodeList object, the XMLDOMNamedNodeMap object exposes the length property. This property returns the number of members in the named node map. Navigating the Named Node MapAs with a node list, you can access members of the named
node map by index using the item idValue = elem1.attributes.getNamedItem("ID").nodeValue The XMLDOMNamedNodeMap object, like the node list object, also exposes the nextNode property. Manipulating a Named Node MapThere are three methods to manipulate named node maps: setNamedItem, idAtt = XMLDoc.createAttribute("ID") elem1.setNamedItem(idAtt) The removeNamedItem method takes a node name as a parameter, removing the node with that name. The removeQualifiedItem method takes a node name and namespaceURI as its parameters, removing the corresponding attribute.
|
|
© 1999 Microsoft Corporation. All rights reserved. Terms of Use. |