aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/globaleventhandlers/onsubmit/index.html
blob: 35b3a7d1f052d99b27bf3bca67a6827f53ce5dc9 (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
---
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">&lt;html&gt;
&lt;script&gt;
function reg() {
  window.captureEvents(Event.SUBMIT);
  window.onsubmit = hit;
}

function hit() {
  console.log('hit');
}
&lt;/script&gt;

&lt;body onload="reg();"&gt;
&lt;form&gt;
  &lt;input type="submit" value="submit" /&gt;
&lt;/form&gt;
&lt;div id="d"&gt; &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>

<h2 id="Замечания">Замечания</h2>

<p>Событие <code>submit</code> возникает, когда пользователь кликает на кнопку "Отправить" в форме (<code>&lt;input type="submit"/&gt;</code>)</p>

<p>Событие <code>submit</code> не возникает, когда пользователь вызывает функцию <code>form.submit()</code> напрямую</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-onsubmit','onsubmit')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td> </td>
  </tr>
 </tbody>
</table>