Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

XMLHttpRequest.responseURL

这篇翻译不完整。请帮忙从英语翻译这篇文章

XMLHttpRequest.responseURL 属性返回响应的经过序列化的 URL ,当 URL 为 null 时返回空字符串。如果 URL 被返回并且 URL 片段在URL中出现,则其将会被去除。 responseURL 的值将会是经过任意多次重定向后的最终 URL .

实例

var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://example.com/test', true);
xhr.onload = function () {
  console.log(xhr.responseURL); // https://example.com/test
};
xhr.send(null);

规范

Specification Status Comment
XMLHttpRequest Living Standard WHATWG living standard

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 37.0 32.0 (32.0) 未实现 24 8.0
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? ? ? ? ? ?

 

文档标签和贡献者

 此页面的贡献者: holynewbie
 最后编辑者: holynewbie,