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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
---
title: 'HTMLFormElement: submit イベント'
slug: Web/API/HTMLFormElement/submit_event
tags:
- Event
- Forms
- HTML DOM
- HTMLFormElement
- Reference
- events
- submit
- イベント
- フォーム
translation_of: Web/API/HTMLFormElement/submit_event
---
<div>{{APIRef}}</div>
<p><strong><code>submit</code></strong> イベントは {{HtmlElement("form")}} が送信されたときに発生します。</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">バブリング</th>
<td>あり (ただし、バブリングしない単純なイベントとして指定されている)</td>
</tr>
<tr>
<th scope="row">キャンセル</th>
<td>可</td>
</tr>
<tr>
<th scope="row">インターフェイス</th>
<td>{{DOMxRef("SubmitEvent")}}</td>
</tr>
<tr>
<th scope="row">イベントハンドラープロパティ</th>
<td>{{domxref("GlobalEventHandlers.onsubmit")}}</td>
</tr>
</tbody>
</table>
<p><code>submit</code> イベントは <code><form></code> 要素自身で発生するものであり、その中の {{HtmlElement("button")}} や {{HtmlElement('input/submit', '<input type="submit">')}} で発生するものではないことに注意してください。しかし、フォームの送信が起動されたことを示すために送信される {{domxref("SubmitEvent")}} には、送信リクエストがどのボタンで起動されたかを {{domxref("SubmitEvent.submitter", "submitter")}} プロパティが含まれています。</p>
<p><code>submit</code> イベントは、ユーザーが送信ボタン ({{HtmlElement("button")}} または {{HtmlElement('input/submit', '<input type="submit">')}}) を押したり、 <kbd>Enter</kbd> キーをフォーム内のフィールド (例えば {{HtmlElement('input/text', '<input type="text">')}}) の編集中に押したりしたときに発生します。このイベントは {{domxref("HTMLFormElement.submit()", "form.submit()")}} メソッドを呼び出した場合には送信されません。</p>
<div class="blockIndicator note">
<p><strong>注:</strong> <a href="/ja/docs/Learn/HTML/Forms/Form_validation">フォームの検証</a>に合格していないフォームを送信しようとすると、 {{domxref("HTMLInputElement/invalid_event", "invalid")}} イベントが発生します。この場合、フォーム検証が送信を阻止しますので、 <code>submit</code> イベントは発生しません。</p>
</div>
<h2 id="Examples" name="Examples">例</h2>
<p>この例は {{domxref("EventTarget.addEventListener()")}} を使用してフォームの送信を待受けし、実行されたときに現在の {{domxref("Event.timeStamp")}} をログ出力し、それからフォームを送信する既定の動作を阻止します。</p>
<h3 id="HTML">HTML</h3>
<pre class="brush: html notranslate"><form id="form">
<label>Test field: <input type="text"></label>
<br><br>
<button type="submit">Submit form</button>
</form>
<p id="log"></p></pre>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush: js notranslate">function logSubmit(event) {
log.textContent = `Form Submitted! Time stamp: ${event.timeStamp}`;
event.preventDefault();
}
const form = document.getElementById('form');
const log = document.getElementById('log');
form.addEventListener('submit', logSubmit);</pre>
<h3 id="Result" name="Result">結果</h3>
<p>{{EmbedLiveSample("Examples")}}</p>
<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("HTML WHATWG", "indices.html#event-submit", "submit")}}</td>
<td>{{Spec2("UI Events")}}</td>
<td>変更なし</td>
</tr>
<tr>
<td>{{SpecName("HTML5.2", "fullindex.html#eventdef-global-submit", "submit")}}</td>
<td>{{Spec2("HTML5.2")}}</td>
<td>変更なし</td>
</tr>
<tr>
<td>{{SpecName("HTML5.1", "fullindex.html#eventdef-global-submit", "submit")}}</td>
<td>{{Spec2("HTML5.1")}}</td>
<td>変更なし</td>
</tr>
<tr>
<td>{{SpecName("HTML5 W3C", "index.html#events-0", "submit")}}</td>
<td>{{Spec2("HTML5 W3C")}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<div>
<p>{{Compat("api.HTMLFormElement.submit_event")}}</p>
</div>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>HTML の {{HtmlElement("form")}} 要素</li>
<li>関連イベント: {{domxref("HTMLInputElement/invalid_event", "invalid")}}</li>
</ul>
|