aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/htmlformelement
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/htmlformelement')
-rw-r--r--files/ru/web/api/htmlformelement/length/index.html6
-rw-r--r--files/ru/web/api/htmlformelement/reportvalidity/index.html8
-rw-r--r--files/ru/web/api/htmlformelement/reset/index.html6
-rw-r--r--files/ru/web/api/htmlformelement/submit/index.html2
4 files changed, 11 insertions, 11 deletions
diff --git a/files/ru/web/api/htmlformelement/length/index.html b/files/ru/web/api/htmlformelement/length/index.html
index 4da7606c9c..17965b5447 100644
--- a/files/ru/web/api/htmlformelement/length/index.html
+++ b/files/ru/web/api/htmlformelement/length/index.html
@@ -13,7 +13,7 @@ translation_of: Web/API/HTMLFormElement/length
<p>{{page("/en-US/docs/Web/API/HTMLFormElement", "Элементы, которые считаются управляющими элементами форм")}}</p>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="syntaxbox"><var>numControls</var> = <em>form</em>.length;
</pre>
@@ -22,14 +22,14 @@ translation_of: Web/API/HTMLFormElement/length
<p>Количество управляющих элементов внутри формы <code>&lt;form&gt;</code>. Это то же число, что и число элементов в {{domxref("HTMLFormControlsCollection")}}, возвращаемой свойством {{domxref("HTMLFormElement.elements", "elements")}}.</p>
-<h2 id="Example" name="Example">Пример</h2>
+<h2 id="Example">Пример</h2>
<pre class="brush:js">if (document.getElementById("form1").length &gt; 1) {
// в форме больше одного управляющего элемента
}
</pre>
-<h2 id="Specifications" name="Specifications">Спецификации</h2>
+<h2 id="Specifications">Спецификации</h2>
<ul>
<li><a href="http://www.w3.org/TR/html5/forms.html#dom-form-length">HTML 5, Section 4.10.3, The form Element</a></li>
diff --git a/files/ru/web/api/htmlformelement/reportvalidity/index.html b/files/ru/web/api/htmlformelement/reportvalidity/index.html
index d12da6175f..83d185529d 100644
--- a/files/ru/web/api/htmlformelement/reportvalidity/index.html
+++ b/files/ru/web/api/htmlformelement/reportvalidity/index.html
@@ -7,12 +7,12 @@ translation_of: Web/API/HTMLFormElement/reportValidity
<p>Метод <strong><code>HTMLFormElement.reportValidity()</code></strong> возвращает<span style="line-height: 1.5;"> </span><strong><code style="font-style: normal; line-height: 1.5;">true</code></strong><span style="line-height: 1.5;"> если все дочерние элементы прошли проверку. Когда возвращается </span><strong><code style="font-style: normal; line-height: 1.5;">false</code></strong><span style="line-height: 1.5;">, по каждому дочернему элементу не прошедшему проверку генерируется событие</span><span style="line-height: 1.5;"> <code><a href="https://developer.mozilla.org/en-US/docs/Web/Events/invalid" title="/en-US/docs/Web/Events/invalid">invalid</a></code> и пользователю сообщаются проблемы проверки.</span></p>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="eval"><em>HTMLFormElement</em>.reportValidity()
</pre>
-<h2 id="Example" name="Example">Пример</h2>
+<h2 id="Example">Пример</h2>
<pre class="eval">document.forms["myform"].addEventListener('invalid', function() {
//Опциональный ответ здесь.
@@ -22,10 +22,10 @@ document.forms["myform"].addEventListener('submit', function() {
document.forms["myform"].reportValidity();
}, false);</pre>
-<h2 id="Specifications" name="Specifications">Спецификация</h2>
+<h2 id="Specifications">Спецификация</h2>
<p><a class="external" href="http://www.w3.org/html/wg/drafts/html/master/semantics.html#the-constraint-validation-api">HTML 5.1 Forms: The Constraint Validation API</a></p>
-<h2 id="Browser_compatibility" name="Browser_compatibility">Совместимость с браузерами</h2>
+<h2 id="Browser_compatibility">Совместимость с браузерами</h2>
<p>{{Compat("api.HTMLFormElement.reportValidity")}}</p>
diff --git a/files/ru/web/api/htmlformelement/reset/index.html b/files/ru/web/api/htmlformelement/reset/index.html
index 1d2c858788..599e8522e4 100644
--- a/files/ru/web/api/htmlformelement/reset/index.html
+++ b/files/ru/web/api/htmlformelement/reset/index.html
@@ -9,16 +9,16 @@ translation_of: Web/API/HTMLFormElement/reset
<p>Если элемент управления формы (такой как кнопка типа reset) имеет имя или идентификатор reset, это маскирует метод <strong><code>HTMLFormElement.reset()</code></strong>. Это не сбрасывает другие атрибуты, такие как <strong>disabled</strong>.</p>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="eval"><em>HTMLFormElement</em>.reset()
</pre>
-<h2 id="Example" name="Example">Пример</h2>
+<h2 id="Example">Пример</h2>
<pre class="eval">document.getElementById('myform').reset();
</pre>
-<h2 id="Specifications" name="Specifications">Спецификация</h2>
+<h2 id="Specifications">Спецификация</h2>
<p><a href="http://www.w3.org/html/wg/drafts/html/master/semantics.html#resetting-a-form">HTML 5.1 Nightly: Resetting a form</a></p>
diff --git a/files/ru/web/api/htmlformelement/submit/index.html b/files/ru/web/api/htmlformelement/submit/index.html
index 4df609cd44..00dfc0a6e9 100644
--- a/files/ru/web/api/htmlformelement/submit/index.html
+++ b/files/ru/web/api/htmlformelement/submit/index.html
@@ -30,7 +30,7 @@ translation_of: Web/API/HTMLFormElement/submit
<pre class="brush: js">document.forms["myform"].submit();
</pre>
-<h2 id="Specification" name="Specification">Specifications</h2>
+<h2 id="Specification">Specifications</h2>
<table class="standard-table">
<thead>