0

次のように $.ajax に対して複数の呼び出しを (ループで) 行っています。

var getRequest = $.ajax({
url: "http://maps.googleapis.com/maps/api/geocode/json?address=" + etc,
type: "GET",
dataType: "json",
});

getRequest.done 関数から url プロパティ (上記) を取得できますか?

4

1 に答える 1

0

関数のコンテキストはdonejqXHR (AJAX 要求のラッパー) です。urlしたがって、次を使用してプロパティにアクセスできますthis

$.ajax({
    url: "http://maps.googleapis.com/maps/api/geocode/json?address=" + etc,
    type: "GET",
    dataType: "json",
}).done(function () { alert(this.url) })
于 2013-05-16T16:29:00.947 に答える