XMLから引き出そうとすると、選択された子を取得できません-この場合、それは作成者です:
<book category="WEB">
<title lang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
<year>2003</year>
<price>49.99</price>
</book>
選択した作成者を表示するJavaScriptスクリプトを取得できません。つまり、私がこれを行う場合。
txt=xmlDoc.getElementsByTagName("title")[2].childNodes[0].nodeValue;
document.write("<p>"+txt);
「JamesMcGovern」を取得します。だが
txt=xmlDoc.getElementsByTagName("title")[2].childNodes[1].nodeValue;
document.write("<p>"+txt);
「PerBothner」はくれません。どうすればこれを可能にできますか?