diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-29 13:58:25 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-05 13:19:25 +0900 |
commit | e21ecd18fedfed8a3bec10530dbcf51f5d4f2ab5 (patch) | |
tree | 937112c15503b1e1c441a39ba0b1270b44f32c05 | |
parent | 3f1472279dfa36baeaf223071b929a2335de3bf7 (diff) | |
download | translated-content-e21ecd18fedfed8a3bec10530dbcf51f5d4f2ab5.tar.gz translated-content-e21ecd18fedfed8a3bec10530dbcf51f5d4f2ab5.tar.bz2 translated-content-e21ecd18fedfed8a3bec10530dbcf51f5d4f2ab5.zip |
2021/09/15 時点の英語版に同期
-rw-r--r-- | files/ja/web/api/xmlhttprequest/status/index.md | 56 |
1 files changed, 20 insertions, 36 deletions
diff --git a/files/ja/web/api/xmlhttprequest/status/index.md b/files/ja/web/api/xmlhttprequest/status/index.md index 6b42a3ceb2..709df960e5 100644 --- a/files/ja/web/api/xmlhttprequest/status/index.md +++ b/files/ja/web/api/xmlhttprequest/status/index.md @@ -3,25 +3,26 @@ title: XMLHttpRequest.status slug: Web/API/XMLHttpRequest/status tags: - API - - XMLHttpRequest - - XMLHttpRequest の結果 - - status - エラー - プロパティ - リファレンス + - XMLHttpRequest + - XMLHttpRequest ステータス + - 結果 + - status +browser-compat: api.XMLHttpRequest.status translation_of: Web/API/XMLHttpRequest/status --- -<div>{{APIRef('XMLHttpRequest')}}</div> - -<p><code><strong>XMLHttpRequest.status</strong></code> プロパティは読み取り専用で、 <code>XMLHttpRequest</code> のレスポンスにおける数値の HTTP <a href="/ja/docs/Web/HTTP/Status">ステータスコード</a>を返します。</p> - +{{APIRef('XMLHttpRequest')}} +**`XMLHttpRequest.status`** プロパティは読み取り専用で、 `XMLHttpRequest` のレスポンスにおける数値の HTTP [ステータスコード](/ja/docs/Web/HTTP/Status)を返します。 -<p>リクエストが完了する前は、 <code>status</code> の値は 0 になります。 <code>XMLHttpRequest</code> がエラーになった場合も、ブラウザーはステータスとして 0 を返します。</p> +リクエストが完了する前は、 `status` の値は 0 になります。 `XMLHttpRequest` がエラーになった場合も、ブラウザーはステータスとして 0 を返します。 -<h2 id="Example" name="Example">例</h2> +## 例 -<pre class="brush: js">var xhr = new XMLHttpRequest(); +```js +var xhr = new XMLHttpRequest(); console.log('UNSENT: ', xhr.status); xhr.open('GET', '/server'); @@ -38,41 +39,24 @@ xhr.onload = function () { xhr.send(); /** - * Outputs the following: + * 出力結果は以下の通り。 * * UNSENT: 0 * OPENED: 0 * LOADING: 200 * DONE: 200 */ -</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-status-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.status")}}</p> +{{Compat}} -<h2 id="See_also" name="See_also">関連情報</h2> +## 関連情報 -<ul> - <li><a href="/ja/docs/Web/HTTP/Response_codes">HTTP レスポンスコード</a>の一覧</li> - <li><a href="/ja/docs/Web/HTTP">HTTP</a></li> -</ul> +- [HTTP レスポンスコード](/ja/docs/Web/HTTP/Response_codes)の一覧 +- [HTTP](/ja/docs/Web/HTTP) |