Metoda getAttribute() DOM XML

Definicja i użycie

getAttribute() Metoda uzyskuje wartość atrybutu o nazwie.

Gramatyka

elementNode.getAttribute(name)
Parametry Opis
name Wymagane. Określa atrybut, z którego wartości ma być pobrany.

Przykład

Poniższy kod załaduje "books.xml" do xmlDoc i uzyska wartości atrybutu "category" wszystkich elementów <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, xmlDoc, txt;
    xmlDoc = xml.responseXML;
    txt = "";
    x = xmlDoc.getElementsByTagName('book');
    for (i = 0; i < x.length; i++) {
        txt += x[i].getAttribute('category') + "<br>";
    }
    document.getElementById("demo").innerHTML = txt;
}

Spróbuj sam