两周前我有以下脚本在 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 调用它,它工作正常。过去两周发生了什么变化?
谢谢