July 2003
Intermediate to advanced
896 pages
45h 43m
English
You want to identify an element by name rather than by its position in the XML hierarchy.
Use the nodeName
property.
You can use the nodeName property to make sure you
are properly processing an XML object when the exact order of
elements is not known. The nodeName property
returns the element name:
// Create an XML object with a single element.
my_xml = new XML("<root />");
// Extract the root element.
rootElement = my_xml.firstChild;
// Displays: root
trace(rootElement.nodeName);This example extracts elements based on their names. Note that it
walks the XML tree using the childNodes array to
examine each element in sequence:
my_xml = new XML("<elements><a /><d /><b /><c /></element>");
rootElement = my_xml.firstChild;
children = rootElement.childNodes;
for (var i = 0; i < children.length; i++) {
// Set the value of the proper variable depending on the value of nodeName. This
// technique works regardless of the order of the child elements.
switch (children[i].nodeName) {
case "a":
aElement = children[i];
break;
case "b":
bElement = children[i];
break;
case "c":
cElement = children[i];
break;
case "d":
dElement = children[i];
break;
}
}For a more complex example using nodeName, see the
search( ) method in Recipe 19.7.
Read now
Unlock full access