diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-29 14:10:26 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-05 13:19:25 +0900 |
commit | 626b484e846bbf2d597804b9abdea3efbb9ddce2 (patch) | |
tree | b6b3fab683da54b56e601c209f55c908491c0b8c /files/ja/web/api/xmlhttprequest | |
parent | 767bf73c0a4b7693211f976409a73a0a658a1320 (diff) | |
download | translated-content-626b484e846bbf2d597804b9abdea3efbb9ddce2.tar.gz translated-content-626b484e846bbf2d597804b9abdea3efbb9ddce2.tar.bz2 translated-content-626b484e846bbf2d597804b9abdea3efbb9ddce2.zip |
2021/09/15 時点の英語版に同期
Diffstat (limited to 'files/ja/web/api/xmlhttprequest')
-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}} |