0
を使用してXMLの要素を取得します。次のように私は、XMLを持っているのjavascript
var a = document.getElementsByTagName("a");
var d = a[1].getElementsByTagName("d")[0].firstChild.data;
document.write("d = " + d);
結果はd = 0
ですが、私の予想結果はd = 99
です。
お願いします。
私は基本的にあなたがa[2]
を探している私は、入力インデックス2
[の可能性のある重複https://stackoverflow.com/questions/4495569/how-do-i-retrieve-the-value-of-a-specific-xml-node-by-path – Niladri
可能な重複特定のXMLノードの値をパスでどのように取得するのですか?](https://stackoverflow.com/questions/4495569/how-do-i-retrieve-the-value-of-a-specific-xml-node-バイパス) – Bakudan