blob: bf30decf4dcabae9d6351554d443e9a320cae85f (
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
|
---
title: GlobalEventHandlers.onsubmit
slug: Web/API/GlobalEventHandlers/onsubmit
translation_of: Web/API/GlobalEventHandlers/onsubmit
---
<div>{{ApiRef("HTML DOM")}}</div>
<p>Обработчик события отправки формы</p>
<h2 id="Синтаксис">Синтаксис</h2>
<pre class="eval">window.onsubmit = <em>funcRef</em>;
</pre>
<h3 id="Параметры">Параметры</h3>
<ul>
<li><code>funcRef</code> – ссылка на функцию.</li>
</ul>
<h2 id="Пример">Пример</h2>
<pre class="eval"><html>
<script>
function reg() {
window.captureEvents(Event.SUBMIT);
window.onsubmit = hit;
}
function hit() {
console.log('hit');
}
</script>
<body onload="reg();">
<form>
<input type="submit" value="submit" />
</form>
<div id="d"> </div>
</body>
</html>
</pre>
<h2 id="Замечания">Замечания</h2>
<p>Событие <code>submit</code> возникает, когда пользователь кликает на кнопку "Отправить" в форме (<code><input type="submit"/></code>)</p>
<p>Событие <code>submit</code> не возникает, когда пользователь вызывает функцию <code>form.submit()</code> напрямую</p>
<h2 id="Спецификации">Спецификации</h2>
{{Specifications}}
|