DOM - Método de objeto de elemento - setAttributeNodeNS
O método setAttributeNodeNS adiciona um novo atributo. Se um atributo com esse nome local e esse URI de namespace já estiver presente no elemento, ele será substituído pelo novo.
Sintaxe
A seguir está a sintaxe para o uso do método setAttributeNodeNS .
elementObj.setAttributeNodeNS(newAttr)
S.No. | Parâmetro e Descrição |
---|---|
1 | newAttr O nó Attr a ser adicionado à lista de atributos. |
Ele retorna um nó Atr substituído.
Exemplo
O conteúdo do node_ns.xml é o seguinte -
<?xml version = "1.0"?>
<Company>
<Employee xmlns:e = "http://www.tutorials.com/technical/" category = "technical">
<e:FirstName e:lang = "en">Tanmay</e:FirstName>
<e:LastName>Patil</e:LastName>
<e:ContactNo>1234567890</e:ContactNo>
<e:Email>[email protected]</e:Email>
</Employee>
<Employee xmlns:n = "http://www.tutorials.com/non-technical/" category = "non-technical">
<n:FirstName n:lang = "en">Taniya</n:FirstName>
<n:LastName>Mishra</n:LastName>
<n:ContactNo>1234667898</n:ContactNo>
<n:Email>[email protected]</n:Email>
</Employee>
</Company>
O exemplo a seguir demonstra o uso do método setAttributeNodeNS -
<!DOCTYPE html>
<head>
<script>
function loadXMLDoc(filename) {
if (window.XMLHttpRequest) {
xhttp = new XMLHttpRequest();
} else // code for IE5 and IE6 {
xhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.open("GET",filename,false);
xhttp.send();
return xhttp.responseXML;
}
</script>
</head>
<body>
<script>
xmlDoc = loadXMLDoc("/dom/node_ns.xml");
x1 = xmlDoc.getElementsByTagName('FirstName')[0];
x2 = xmlDoc.getElementsByTagName('FirstName')[1];
ns="http://www.tutorials.com/technical/";
var nsattr = x1.getAttributeNodeNS(ns, "lang");
x2.setAttributeNodeNS(nsattr.cloneNode(true));
document.write(x2.attributes[1].value); // returns: 'en'
</script>
</body>
</html>
Execução
Salve este arquivo como elementattribute_setAttributeNodeNS.htm no caminho do servidor (este arquivo e node_ns.xml devem estar no mesmo caminho em seu servidor). Obteremos a saída conforme mostrado abaixo -
en