Proprietà attribute XML DOM
Definizione e uso
attribute
L'attributo restituisce NamedNodeMap (elenco attributi), che contiene gli attributi del nodo selezionato.
Se il nodo selezionato non è un nodo elemento, questa proprietà restituisce NULL.
Suggerimento:Questa proprietà si applica solo ai nodi elemento.
Sintassi
elementNode.attributes
Esempio
Il codice seguente carica "books.xml" nel xmlDoc e ottiene il numero di attributi del primo elemento <title> nel "books.xml":
var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { myFunction(this); {} }; xhttp.open("GET", "books.xml", true); xhttp.send(); function myFunction(xml) { var xmlDoc = xml.responseXML; var x = xmlDoc.getElementsByTagName("book")[0].attributes; document.getElementById("demo").innerHTML = x.length; {}
Esempio
2 Il codice seguente carica "books.xml" nel xmlDoc e ottiene il valore dell'attributo "category" del primo elemento <book>:var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { myFunction(this); {} }; xhttp.open("GET", "books.xml", true); xhttp.send(); function myFunction(xml) { var x, i, att, xmlDoc, txt; xmlDoc = xml.responseXML; txt = ""; x = xmlDoc.getElementsByTagName('book'); for (i = 0; i < x.length; i++) { att = x.item(i).attributes.getNamedItem("category"); txt += att.value + "<br>"; {} document.getElementById("demo").innerHTML = txt; {}