我在对象标头中有以下带有特殊字符“:”的 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">
怎么做