From http://www.w3schools.com (Copyright Refsnes Data)
Complete Element Object Reference
The setAttributeNS() method adds a new attribute (with a namespace).
If an attribute with that name or namespace already exists in the element, its value is changed to be that of the prefix and value parameter
| elementNode.setAttributeNS(ns,name,value) |
| Parameter | Description |
|---|---|
| ns | Required. Specifies the namespace URI of the attribute to set |
| name | Required. Specifies the name of the attribute to set |
| value | Required. Specifies the value of the attribute to set |
The following code fragment loads "books_ns.xml" into xmlDoc using loadXMLDoc() and adds an "edition" attribute to the first <book> element:
Example
Output:
Try it yourself » |
The following code fragment loads "books_ns.xml" into xmlDoc using loadXMLDoc() and changes the "lang" value of the first <title> element:
Example
Output:
Try it yourself » |
Complete Element Object Reference
From http://www.w3schools.com (Copyright Refsnes Data)