我正在尝试使用纬度和经度(按照 api 中的要求)获取某个位置的时区。它正在使用 FF 和 chrome,但它在 IE(7,8,9) 中引发错误
var url = "https://maps.googleapis.com/maps/api/timezone/json?location=43.653226,-79.38318429999998×tamp=1331161200&sensor=true";
alert(url);
$.ajax({
type: "GET",
url: url,
cache:false,
success: function(results){
alert(results);
},
error:function(xhr, ajaxOptions, thrownError)
{
alert(thrownError);
},
fail: function(){
alert('ajax fail');
}
});
错误显示“无传输”
任何建议表示赞赏。
谢谢