我正在使用 Jquery 来调用 Weather Underground XML api。在浏览器中准备好文档时我定义的功能下方。很简单的东西。我很好奇的一件事是当我使用设置为“xml”的 dataType 时返回的 xml 对象。我看到很多例子,人们调用诸如returned_xml.find() 之类的函数来定位xml 中的特定元素。我似乎无法在 xml 对象的 api 上找到非常好的文档。任何指针?谢谢
$(document).ready(function () {
jQuery.support.cors = true; // force cross-site scripting (as of jQuery 1.5)
$.ajax(
{ url : "http://api.wunderground.com/api/0787878787878/geolookup/conditions/q/IA/Cedar_Rapids.xml",
dataType : "xml",
success : function(returned_xml)
{ alert("Data is " + returned_xml.xml );
},
error : function(failed_data)
{
alert("failed with " + failed_data);
}
});
});