我在两周前在XAMPP中运行了以下脚本,今天它不起作用。
var url = 'http://maps.googleapis.com/maps/api/directions/xml?origin=Chicago,IL&destination=Los+Angeles,CA&waypoints=Joplin,MO|Oklahoma+City,OK&sensor=false';
$.ajax({
type: "GET",
url: url,
dataType: "xml",
async: false,
success: function(xml) {
$(xml).find("route").each(function(){
var startaddresss = $(this).find('start_address').text();
alert(startaddresss);
});
}
});
如果我将XML保存到XAMPP并从AJAX调用它可以正常工作。过去两周有什么变化?
由于
答案 0 :(得分:0)
无法解决问题。所以我将使用PHP来获取文件并返回JSON。