blob: c6a48aa88070f47b4261dd4192c220a55476cdf9 (
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
|
---
title: XMLHttpRequestEventTarget.onabort
slug: Web/API/XMLHttpRequestEventTarget/onabort
tags:
- API
- Property
- Reference
- Web
- XHMLHttpRequestEventTarget
- イベントハンドラ
translation_of: Web/API/XMLHttpRequestEventTarget/onabort
---
<div>{{APIRef("XMLHttpRequest")}}</div>
<p><strong><code>XMLHttpRequestEventTarget.onabort</code></strong> は、 {{domxref("XMLHttpRequest.abort()")}} 関数が呼ばれたときなどの {{domxref("XMLHttpRequest")}} トランザクションが中止されたときに呼び出される関数です。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate"><em>XMLHttpRequest</em>.onabort = <em>callback</em>;</pre>
<h3 id="値">値</h3>
<ul>
<li><code><em>callback</em></code> は、トランザクションが中止されたときに実行される関数です。</li>
</ul>
<h2 id="Example" name="Example">例</h2>
<pre class="brush: js notranslate">var xmlhttp = new XMLHttpRequest(),
method = 'GET',
url = 'https://developer.mozilla.org/';
xmlhttp.open(<em>method</em>, <em>url</em>, true);
xmlhttp.onabort = function () {
console.log('** The request was aborted');
};
xmlhttp.send();
//..
xmlhttp.abort(); // This will invoke our onabort handler above
</pre>
<h2 id="仕様">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様</th>
<th scope="col">ステータス</th>
<th scope="col">備考</th>
</tr>
<tr>
<td>{{SpecName('XMLHttpRequest', '#handler-xhr-onabort')}}</td>
<td>{{Spec2('XMLHttpRequest')}}</td>
<td>WHATWG living standard</td>
</tr>
</tbody>
</table>
<h2 id="ブラウザーの互換性">ブラウザーの互換性</h2>
<p>{{Compat("api.XMLHttpRequestEventTarget.onabort")}}</p>
|