XML DOM getAttribute() メソッド

定義と使用法

getAttribute() 属性値を名前で取得するメソッドです。

文法

elementNode.getAttribute(name)
パラメータ 説明
name 必須。属性値を取得する属性を指定します。

以下のコードは "books.xml" を xmlDoc に読み込み、すべての <book> 要素の "category" 属性の値を取得します:

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;
}

実際に試してみる