XML DOM getElementsByTagNameNS() Method
Complete Document Object Reference
Definition and Usage
The getElementsByTagNameNS() method returns a NodeList of all elements with a specified
name and namespace.
Syntax
|
getElementsByTagNameNS(ns,name)
|
| Parameter |
Description |
| ns | A string that specifies the namespace name to search for.
The value "*" matches all tags |
| name | A string that specifies the tagname to search for. The
value "*" matches all tags |
Example
The following code fragment loads "books.xml"
into xmlDoc using
loadXMLDoc() and adds an element node with a namespace to each <book> element:
Example
xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName('book');
var newel,newtext;
for (i=0;i<x.length;i++)
{
newel=xmlDoc.createElementNS('p','edition');
newtext=xmlDoc.createTextNode('First');
newel.appendChild(newtext);
x[i].appendChild(newel);
}
//Output all titles and editions
y=xmlDoc.getElementsByTagName("title");
z=xmlDoc.getElementsByTagNameNS("p","edition");
for (i=0;i<y.length;i++)
{
document.write(y[i].childNodes[0].nodeValue);
document.write(" - ");
document.write(z[i].childNodes[0].nodeValue);
document.write(" edition");
document.write("<br />");
}
|
Try it yourself »
|
Complete Document Object Reference

Whether you're new to XML or already an advanced user,
the user-friendly views and powerful entry helpers,
wizards, and debuggers in XMLSpy are designed to meet your XML
and Web development needs from start to finish.
- XML editor
- Graphical XML Schema / DTD editors
- XSLT 1.0/2.0 editor, debugger, profiler
- XQuery editor, debugger, profiler
- XBRL validator & taxonomy editor
- Support for Office Open XML (OOXML)
- Graphical WSDL editor & SOAP debugger
- Java, C#, C++ code generation
- And much more!
Download a free trial today!
|
|
|
|