我正在对 $.ajax 进行多次调用(循环),如下所示:
var getRequest = $.ajax({
url: "http://maps.googleapis.com/maps/api/geocode/json?address=" + etc,
type: "GET",
dataType: "json",
});
我可以从 getRequest.done 函数中获取 url 属性(上图)吗?
我正在对 $.ajax 进行多次调用(循环),如下所示:
var getRequest = $.ajax({
url: "http://maps.googleapis.com/maps/api/geocode/json?address=" + etc,
type: "GET",
dataType: "json",
});
我可以从 getRequest.done 函数中获取 url 属性(上图)吗?