我正在尝试向 Google 地图地理编码服务发出 Ajax 请求以获取纬度和经度,它在 IE 中不起作用,但在 chrome 和 Firefox 中完美运行。这是我的 Ajax 片段。
$.ajax({
url: "http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=false",
type: 'get',
dataType: "json",
success: function(result){
alert(result);
}
});
出了什么问题。