尝试使用 jQuery 解析 XML,但我无法让它终生工作。
var geoCity = "Aberdeen"
$.ajax({
type: "GET",
url: "http://www.google.com/ig/api?weather="+geoCity,
dataType: "xml",
success: parseXml
});
function parseXml(xml) {
$(xml).find("weather").each(function() {
$("body").append($(this).find("current_conditions").text() );
});
}
});