aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/xmlhttprequest/timeout_event/index.md
blob: 2cb78d4d282cee3f1f97c40095c5f1d5d02460c8 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
title: 'XMLHttp​Request: timeout イベント'
slug: Web/API/XMLHttpRequest/timeout_event
tags:
  - API
  - Event
  - リファレンス
  - XHR
  - XMLHttpRequest
  - イベント
  - timeout
browser-compat: api.XMLHttpRequest.timeout_event
translation_of: Web/API/XMLHttpRequest/timeout_event
---
{{APIRef}}

**`timeout`** イベントは、設定された時間が経過し進捗が終了すると発行されます。

<table class="properties">
  <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>

## 例

```js
const client = new XMLHttpRequest();
client.open('GET', 'http://www.example.org/example.txt');
client.ontimeout = () => {
    console.error('Timeout!!')
};

client.send();
```

イベントハンドラーは {{domxref("EventTarget/addEventListener", "addEventListener()")}} メソッドを使用して設定することもできます。

```js
client.addEventListener('timeout', () => {
    console.error("Timeout!!");
});
```

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- {{domxref("XMLHttpRequest")}}