从jQuery Ajax请求获取重定向URL

时间:2014-02-12 12:38:49

标签: javascript jquery ajax http

  

请投票结束,因为这是完全相同的

我想知道重定向后ajax请求的最终url。我正在使用jQuery 1.8.0。任何线索?

$("body").ajaxComplete(function(event, request, settings){
     console.log(settings.url);                           // got '/a'
     console.log(request.getResponseHeader('Location'));  //got 'null'
});
$('anElt').load('/a');

使用以下标题进入/ a有一个重定向:

HTTP/1.1 302 Found
Location: /b

0 个答案:

没有答案