XML DOM getAttributeNode() メソッド
定義と使用法
getAttributeNode()
現在の要素から属性ノードを名前で取得します。
文法
elementNode.getAttributeNode(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, attnode, xmlDoc, txt; xmlDoc = xml.responseXML; txt = ""; x = xmlDoc.getElementsByTagName('book'); for (i = 0; i < x.length; i++) { attnode = x.item(i).getAttributeNode("category"); txt += attnode.name + " = " + attnode.value + "<br>"; } document.getElementById("demo").innerHTML = txt; }