好的......
所以我得到了这个XML文件,我需要解析它......
<Current>
<Artists>
<![CDATA[ Artists of movie ]]>
</Artists>
<Title>
<![CDATA[ title of movie ]]>
</Title>
<Image/>
<Purchase/>
</Current>
...... //继续以这种方式......
这是我的代码......
$(document).ready
(
function()
{
$.get("url of xml file ",{},
function(xml)
{
$("Current", xml).each
(
function(i)
{
author= $(this).find("Authors").text();
alert(author);
}
);
}
);
});
为什么不起作用?请注意,此代码在IE9 ... :(我希望它不是浏览器:(
答案 0 :(得分:1)
您需要将标记包装到另一个容器中。您无法选择文档的根目录。
<List>
<Current>
<Artists>
<![CDATA[ Artists of movie ]]>
</Artists>
<Title>
<![CDATA[ title of movie ]]>
</Title>
<Image/>
<Purchase/>
</Current>
</List>