0

我使用过jQuery 和 JSON对象,但是如何使用 jQuery 获取和显示xml页面中的数据?或者如何使用 jQuery 获取XML 文件中的数据并将其显示在页面上?

4

2 回答 2

2

Have you read through this tutorial http://api.jquery.com/jQuery.parseXML/

and I think what you want is

$.ajax({
    type: "GET",
url: "sites.xml",
dataType: "xml",
success: function(xml) {

}
});

from here : http://think2loud.com/224-reading-xml-with-jquery/

于 2012-12-04T12:09:00.697 回答
1

您可以使用 jQuery 以与处理 HTML 节点完全相同的方式处理 XML 节点:

$(response).find('somenode');

假设您设置dataTypexml,响应已经是一个 XML 文档对象。只需将其包装在一个 jQuery 对象中,您就可以find在其上使用 etc。

于 2012-12-04T12:11:24.030 回答