オブジェクト ヘッダーに特殊文字「:」を含む次の xml があります。それを解析する方法。
<p606:ResponseData xmlns:p353="">
<p353:PersonId idOwner="loA">
<p353:IdValue name="78N">1fgsth</p353:IdValue>
</p353:PersonId>
<p353:CInfo effectiveDate="2010-03-13" xsi:type="p353:cnt">
<p353:TCode>OYYT</p353:TCode>
<p353:Ext>100</p353:Ext>
</p353:ContactInfo>
</p606:ResponseData>
私は以下を使用しました
xmlDoc = $.parseXML( xml ),
$xml = $( xmlDoc ),
$title = $xml.find( "p353:TCode" );
$( "#somePlace" ).append( $title.text() );
しかし、うまくいきませんでした...さらに、次の行から effectiveDate の値が必要です
<p353:CInfo effectiveDate="2010-03-13" xsi:type="p353:cnt">
どうやってするの