blob: b0f909b7e073cba89bb130e501477af498462d2c (
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
41
42
43
44
45
46
47
48
|
---
title: XMLHttpRequest.responseURL
slug: Web/API/XMLHttpRequest/responseURL
tags:
- AJAX
- Read-only
- Reference
- URL
- XMLHttpRequest
- responseURL
- プロパティ
translation_of: Web/API/XMLHttpRequest/responseURL
---
<div>{{APIRef('XMLHttpRequest')}}</div>
<p><code><strong>XMLHttpRequest.responseURL</strong></code> プロパティは読み取り専用で、レスポンスのシリアライズされた URL を返します。 URL が <code>null</code> の場合は、空文字を返します。 URL に存在する URL フラグメントはすべて取り除かれます。 <code>responseURL</code> の値は、任意のリダイレクト後に得られる最後の URL になります。</p>
<h2 id="Example" name="Example">例</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="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('XMLHttpRequest', '#the-responseurl-attribute')}}</td>
<td>{{Spec2('XMLHttpRequest')}}</td>
<td>WHATWG living standard</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<p>{{Compat("api.XMLHttpRequest.responseURL")}}</p>
|