当我尝试使用下面的代码从标签中获取CDATA内的文本时,它给了我空白而不是“加强了在波兰和葡萄牙的领导”文本?
代码:
var story = item.getElementsByTagName("HighLightedResume").item(0).text;
我的XML如下:
<Items>
<Item>
<HighLightedResume><![CDATA[Strengthened leadership in Poland and in Portugal]]></HighLightedResume>
</Item>
</Items>