尝试退出 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);
我得到'詹姆斯麦戈文'。但
txt=xmlDoc.getElementsByTagName("title")[2].childNodes[1].nodeValue;
document.write("<p>"+txt);
不会给我“Per Bothner”。我怎样才能做到这一点?