blob: 289cb10febbb15f991b2a29e8b6f23e75569747d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
---
title: XMLHttpRequest.responseURL
slug: Web/API/XMLHttpRequest/responseURL
tags:
- XMLHttpRequest.responseURL
translation_of: Web/API/XMLHttpRequest/responseURL
---
<p>{{APIRef('XMLHttpRequest')}}</p>
<p>只读属性<code><strong>XMLHttpRequest.responseURL</strong></code>返回响应的序列化URL,如果URL为空则返回空字符串。如果URL有锚点,则位于URL # 后面的内容会被删除。如果URL有重定向, <code>responseURL</code> 的值会是经过多次重定向后的最终 URL 。</p>
<h2 id="实例">实例</h2>
<pre class="brush: js">var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://example.com/test', true);
xhr.onload = function () {
console.log(xhr.responseURL); // http://example.com/test
};
xhr.send(null);</pre>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('XMLHttpRequest', '#the-responseurl-attribute')}}</td>
<td>{{Spec2('XMLHttpRequest')}}</td>
<td>WHATWG living standard</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
{{Compat("api.XMLHttpRequest.responseURL")}}
|