【发布时间】:2014-01-24 15:06:33
【问题描述】:
所以我有如上所示的这个XML文件,我想解析字段outputId。
-<personRepresentaion>
<theId>1324</theId>
<name>John</name>
<topY>1</topY>
<leftX>0</leftX>
<height>10</height>
<width>12</width>
-<relationships>
<inputId>1324</inputId>
<outputId>1325</outputId>
</relationships>
</personRepresentaion>
目前我解析其他字段如下:
var x=xmlDoc.getElementsByTagName("personRepresentaion");
for (i=0;i<x.length;i++){
var y =x[i].getElementsByTagName("theId")[0].childNodes[0].nodeValue //this gets me theId
//now I want to get the outputId
var outputId = x[i].getElementsByTagName("outputId")[0].childNodes[0].nodeValue //what is wrong with this?
}
【问题讨论】: