在我请求我设置的 url 后,我想要路径名。
假设我把 http://www.abc.com
然后服务器会自动将我返回到http://www.abc.com/sessionId/folder/default.aspx
我需要在 jquery 中获取返回 url。
无论如何都要这样做吗?
我尝试 ajax get/post 来获取响应头位置,它总是得到空值。
是我在下面显示的参考代码
$.ajax({
type: 'POST',
url: '/echo/html',
data: {},
dataType: "json",
success: function(res,status,XHR) {
//var location = XHR..getResponseHeader('Location');
alert(XHR.getResponseHeader('Content-Type'));
alert(XHR.getResponseHeader('Location'));
},
error: function(jqXHR) { }
});