我需要獲取標籤「myChild」和「內容」的名稱。 這很簡單,但我卡住了,困了,這裏是我得到我的測試:Javascript/XML - 獲取節點名稱
XML:
...
<myParent>
<myChild>content</myChild>
</myParent>
<myParent>
<myChild>content</myChild>
</myParent>
...
JS:
var x=xmlDoc.getElementsByTagName("myParent");
alert(x[1].childNodes[0].nodeName); //returns "#text" - "myChild" needed
alert(x[1].childNodes[0].nodeValue); //returns "" - "content" needed
@TJ +1非常好。 – 2011-05-05 12:12:32