diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-30 00:52:51 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-05 13:19:57 +0900 |
commit | 72c010b7e684f1dd1aca0de10dae54acbc212a8f (patch) | |
tree | b33fd6ab537eaa40512d7d62bc6f59b423943fe9 /files/ja | |
parent | cce52bf16d6ae148999c2bdc61ddbb99c8f70664 (diff) | |
download | translated-content-72c010b7e684f1dd1aca0de10dae54acbc212a8f.tar.gz translated-content-72c010b7e684f1dd1aca0de10dae54acbc212a8f.tar.bz2 translated-content-72c010b7e684f1dd1aca0de10dae54acbc212a8f.zip |
2021/09/15 時点の英語版に同期
Diffstat (limited to 'files/ja')
-rw-r--r-- | files/ja/web/api/xmlhttprequest/timeout_event/index.md | 97 |
1 files changed, 44 insertions, 53 deletions
diff --git a/files/ja/web/api/xmlhttprequest/timeout_event/index.md b/files/ja/web/api/xmlhttprequest/timeout_event/index.md index d9cea5662e..2cb78d4d28 100644 --- a/files/ja/web/api/xmlhttprequest/timeout_event/index.md +++ b/files/ja/web/api/xmlhttprequest/timeout_event/index.md @@ -2,80 +2,71 @@ title: 'XMLHttpRequest: timeout イベント' slug: Web/API/XMLHttpRequest/timeout_event tags: - - Reference + - API + - Event + - リファレンス - XHR - XMLHttpRequest - - timeout - イベント - - タイムアウト + - timeout +browser-compat: api.XMLHttpRequest.timeout_event translation_of: Web/API/XMLHttpRequest/timeout_event --- -<div>{{APIRef}}</div> +{{APIRef}} -<p><code><strong>timeout</strong></code> イベントは、設定された時間が経過し進捗が終了すると発生します。</p> +**`timeout`** イベントは、設定された時間が経過し進捗が終了すると発行されます。 <table class="properties"> - <tbody> - <tr> - <td>バブリング</td> - <td>なし</td> - </tr> - <tr> - <td>キャンセル</td> - <td>不可</td> - </tr> - <tr> - <td>インターフェイス</td> - <td>{{domxref("ProgressEvent")}}</td> - </tr> - <tr> - <td>イベントハンドラープロパティ</td> - <td>{{domxref("XMLHttpRequestEventTarget.ontimeout")}}</td> - </tr> - </tbody> + <tbody> + <tr> + <th>バブリング</th> + <td>なし</td> + </tr> + <tr> + <th>キャンセル</th> + <td>不可</td> + </tr> + <tr> + <th>インターフェイス</th> + <td>{{domxref("ProgressEvent")}}</td> + </tr> + <tr> + <th>イベントハンドラープロパティ</th> + <td> + {{domxref("XMLHttpRequestEventTarget.ontimeout")}} + </td> + </tr> + </tbody> </table> -<h2 id="Examples" name="Examples">例</h2> +## 例 -<pre class="brush: js line-numbers language-js">const client = new XMLHttpRequest(); +```js +const client = new XMLHttpRequest(); client.open('GET', 'http://www.example.org/example.txt'); -client.ontimeout = () => { +client.ontimeout = () => { console.error('Timeout!!') }; -client.send();</pre> +client.send(); +``` -<p>イベントハンドラーは {{domxref("EventTarget/addEventListener", "addEventListener()")}} メソッドを使用して設定することもできます。</p> +イベントハンドラーは {{domxref("EventTarget/addEventListener", "addEventListener()")}} メソッドを使用して設定することもできます。 -<pre class="brush: js">client.addEventListener('timeout', () => { +```js +client.addEventListener('timeout', () => { console.error("Timeout!!"); -});</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', '#event-xhr-timeout', 'timeout event')}}</td> - <td>{{Spec2('XMLHttpRequest')}}</td> - <td> </td> - </tr> - </tbody> -</table> +{{Specifications}} -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> +## ブラウザーの互換性 -<p>{{Compat("api.XMLHttpRequest.timeout_event")}}</p> +{{Compat}} -<h2 id="See_also" name="See_also">関連情報</h2> +## 関連情報 -<ul> - <li>{{domxref("XMLHttpRequest")}}</li> -</ul> +- {{domxref("XMLHttpRequest")}} |