diff options
-rw-r--r-- | files/ja/web/api/xmlhttprequest/responseurl/index.md | 42 |
1 files changed, 15 insertions, 27 deletions
diff --git a/files/ja/web/api/xmlhttprequest/responseurl/index.md b/files/ja/web/api/xmlhttprequest/responseurl/index.md index b0f909b7e0..d1e525ad67 100644 --- a/files/ja/web/api/xmlhttprequest/responseurl/index.md +++ b/files/ja/web/api/xmlhttprequest/responseurl/index.md @@ -3,46 +3,34 @@ title: XMLHttpRequest.responseURL slug: Web/API/XMLHttpRequest/responseURL tags: - AJAX - - Read-only - - Reference + - プロパティ + - 読み取り専用 + - リファレンス - URL - XMLHttpRequest - responseURL - - プロパティ +browser-compat: api.XMLHttpRequest.responseURL translation_of: Web/API/XMLHttpRequest/responseURL --- -<div>{{APIRef('XMLHttpRequest')}}</div> +{{APIRef('XMLHttpRequest')}} -<p><code><strong>XMLHttpRequest.responseURL</strong></code> プロパティは読み取り専用で、レスポンスのシリアライズされた URL を返します。 URL が <code>null</code> の場合は、空文字を返します。 URL に存在する URL フラグメントはすべて取り除かれます。 <code>responseURL</code> の値は、任意のリダイレクト後に得られる最後の URL になります。</p> +**`XMLHttpRequest.responseURL`** プロパティは読み取り専用で、レスポンスのシリアライズされた URL を返します。 URL が `null` の場合は、空文字を返します。 URL に存在する URL フラグメントはすべて取り除かれます。 `responseURL` の値は、任意のリダイレクト後に得られる最後の URL になります。 -<h2 id="Example" name="Example">例</h2> +## 例 -<pre class="brush: js">var xhr = new XMLHttpRequest(); +```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> +xhr.send(null); +``` -<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> +{{Specifications}} -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> +## ブラウザーの互換性 -<p>{{Compat("api.XMLHttpRequest.responseURL")}}</p> +{{Compat}} |