aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/globaleventhandlers/onclose/index.html
blob: 8c0429e23339fb2a45c76ad68b7fe962ba0d2300 (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
---
title: window.onclose
slug: Web/API/GlobalEventHandlers/onclose
tags:
  - API
  - Dialog
  - Event Handler
  - Experimental
  - GlobalEventHandlers
  - HTML DOM
  - NeedsExample
  - Property
  - Reference
translation_of: Web/API/GlobalEventHandlers/onclose
---
<div>{{ApiRef("HTML DOM")}} {{SeeCompatTable}}</div>

<p><code><strong>onclose</strong></code>{{domxref("GlobalEventHandlers")}} ミックスインのプロパティで、ダイアログ要素に送信された {{event("close")}} イベントを処理するための {{domxref("EventHandler", "イベントハンドラー")}} です。</p>

<p><code>close</code> イベントは、ユーザーが <code>&lt;dialog&gt;</code> を閉じたときに発生します。</p>

<div class="blockIndicator note">
<p><strong>注:</strong> ウィンドウのクローズを処理するには、{{domxref("WindowEventHandlers.onbeforeunload", "onbeforeunload")}} または {{domxref("WindowEventHandlers.onunload", "onunload")}} を使用します。</p>
</div>

<h2 id="構文">構文</h2>

<pre class="syntaxbox notranslate"><em>target</em>.onclose = <em>functionRef</em>;
</pre>

<h3 id="値"></h3>

<p><code>functionRef</code> は、関数名または<a href="/docs/Web/JavaScript/Reference/Operators/function">関数式</a>です。この関数は、{{domxref("Event")}} オブジェクトを唯一の引数として受け取ります。</p>

<p>一度に1つのオブジェクトに割り当てることができる <code>onclose</code> ハンドラーは1つだけです。代わりに、より柔軟性のある {{domxref("EventTarget.addEventListener()")}} メソッドを使用することをお勧めします。</p>

<h2 id="仕様">仕様</h2>

<table class="spectable standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">状態</th>
   <th scope="col">備考</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG','webappapis.html#handler-onclose','onclose')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td></td>
  </tr>
 </tbody>
</table>

<h2 id="ブラウザの互換性">ブラウザの互換性</h2>

<div>


<p>{{Compat("api.GlobalEventHandlers.onclose")}}</p>
</div>

<h2 id="関連情報">関連情報</h2>

<ul>
 <li>{{event("close")}} event</li>
 <li>HTML {{HTMLElement("dialog")}} element</li>
 <li>Related event handler: {{domxref("GlobalEventHandlers.oncancel")}}</li>
</ul>