无论我尝试什么,我都无法在.ajax响应中找到XML节点。
<?xml version="1.0" encoding="utf-8"?>
<ctatt>
<tmst>20121209 09:58:14</tmst>
<errCd>0</errCd>
<errNm />
<eta>
<staId>40970</staId>
<stpId>30188</stpId>
<staNm>Cicero</staNm>
<stpDe>Service toward Forest Park</stpDe>
<rn>105</rn>
<rt>Blue</rt>
<destSt>0</destSt>
<destNm>Forest Park</destNm>
<trDr>5</trDr>
<prdt>20121209 09:57:40</prdt>
<arrT>20121209 10:00:40</arrT>
<isApp>0</isApp>
<isSch>0</isSch>
<isDly>0</isDly>
<isFlt>0</isFlt>
<flags />
</eta>
</ctatt>
$(response).find('ctatt').find('eta').each(function(){});
将找不到ela节点。它永远不会进入每个循环。
$(response).find('ctatt').find('tmst')
或$(response).find('ctatt').find('errCd')
确实会进入每个循环。我不明白为什么它无法解析$(response).find('ctatt').find('eta')
答案 0 :(得分:0)
var xml = $.parseXML(response);
$(xml).find('ctatt').find('eta').each(function(i,elem){
console.log(elem);
});