You are here: Reference > JavaScript > client-side > HTML DOM > methods > setNamedItemNS (attributes)
setNamedItemNS method (attributes)
9 | ||||
Adds the specified attribute node to the current attributes collection.
Note: Internet Explorer supports the setNamedItemNS method from version 9, but only for HTML documents, not for XML documents.
If an attribute with the same namespaceURI and name exists in the current attributes collection, then this method removes it and returns the removed attribute node.
The namespaceURI and name are case-sensitive.Syntax:
You can find the related objects in the Supported by objects section below.
Parameters:
Required. Reference to the attribute node to add. |
Return value:
Returns the removed attribute node or null if the no attribute was removed.
Methods for attributes with namespaces:
Name | Browser | Description | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
createAttributeNS |
|
Creates a new attribute node with the specified namespace and name. | ||||||||||
getAttributeNS |
|
Returns the value of the attribute with the specified namespace and name from the current element. | ||||||||||
getAttributeNodeNS |
|
Returns the attribute node with the specified namespace and name from the current element. | ||||||||||
getNamedItemNS |
|
Returns the attribute node with the specified namespace and name from the current attributes collection. | ||||||||||
hasAttributeNS |
|
Returns whether the current element has an attribute with the specified namespace and name or not. | ||||||||||
removeAttributeNS |
|
Removes the attribute with the specified namespace and name from the current element. | ||||||||||
removeAttributeNode | Removes the specified attribute node from the current element. | |||||||||||
removeNamedItemNS |
|
Removes the attribute with the specified namespace and name from the current attributes collection and returns the removed attribute node. | ||||||||||
setAttributeNS |
|
Adds an attribute with the specified namespace, name and value to the current element. | ||||||||||
setAttributeNodeNS |
|
Adds the specified attribute node to the current element. | ||||||||||
setNamedItemNS |
|
Adds the specified attribute node to the current attributes collection. |
Example HTML code 1:
This example illustrates the use of the setNamedItemNS method:
|
|||||||
<head> <script type="text/javascript" src="ajax.js"></script> <script type="text/javascript"> var httpRequest = null; function SendRequest () { if (!httpRequest) { httpRequest = CreateHTTPRequestObject (); // defined in ajax.js } if (httpRequest) { // The requested file must be in the same domain that the page is served from. var url = "ns.xml"; httpRequest.open ("GET", url, true); // async httpRequest.onreadystatechange = OnStateChange; httpRequest.send (null); } } function OnStateChange () { if (httpRequest.readyState == 0 || httpRequest.readyState == 4) { if (IsRequestSuccessful (httpRequest)) { // defined in ajax.js Test_CreateAttributeNS (); } else { alert ("Operation failed."); } } } function Test_CreateAttributeNS () { var xmlDoc = ParseHTTPResponse (httpRequest); // defined in ajax.js if (!xmlDoc) return; var itemTags = xmlDoc.getElementsByTagName ("item"); var firstItem = itemTags[0]; if (xmlDoc.createAttributeNS && firstItem.getAttributeNS && firstItem.setAttributeNodeNS) { var color = firstItem.getAttributeNS ("http://help.dottoro.com/NS", "color"); alert ("The value of the color attribute is " + color); var newAttr = xmlDoc.createAttributeNS ("http://help.dottoro.com/NS", "color"); newAttr.value = "blue"; firstItem.attributes.setNamedItemNS (newAttr); var color = firstItem.getAttributeNS ("http://help.dottoro.com/NS", "color"); alert ("The value of the color attribute is " + color); } else { alert ("Your browser doesn't support this functionality!"); } } </script> </head> <body> <button onclick="SendRequest ()">Test the createAttributeNS method</button> </body> |
|||||||
|
|||||||
Did you find this example helpful?
|
Supported by objects:
Related pages:
setNamedItem
createAttributeNS
getAttributeNS
getAttributeNodeNS
getNamedItemNS
hasAttributeNS
removeAttributeNS
removeAttributeNode
removeNamedItemNS
setAttributeNS
setAttributeNodeNS
createAttributeNS
getAttributeNS
getAttributeNodeNS
getNamedItemNS
hasAttributeNS
removeAttributeNS
removeAttributeNode
removeNamedItemNS
setAttributeNS
setAttributeNodeNS
External links:
User Contributed Comments