diff options
author | Roma Zvarich <hisbvdis@gmail.com> | 2021-07-18 14:18:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-18 14:18:00 +0300 |
commit | 4f1ba6d2c029e2f1026766f755ffffe0a6ed972a (patch) | |
tree | 488bc1fa539db3be89aab23830fd0c27a2f5a248 /files/ru/web/api/validitystate/stepmismatch | |
parent | 8426186ad748d23b13a494ddd5deeb2e99cf651d (diff) | |
download | translated-content-4f1ba6d2c029e2f1026766f755ffffe0a6ed972a.tar.gz translated-content-4f1ba6d2c029e2f1026766f755ffffe0a6ed972a.tar.bz2 translated-content-4f1ba6d2c029e2f1026766f755ffffe0a6ed972a.zip |
Перевод "Validitystate" и дочерних статей (#1531)
* 'ValidityState' topic
* 'badInput' topic
* 'patternMismatch' topic
* 'range overflow' article
* 'range underflow' article
* 'step mismatch' article
* 'Too long' article
* 'Too short' article
* 'Type mismatch' article
* 'Read only' fix
* Typo fix
* Update files/ru/web/api/validitystate/badinput/index.html
Co-authored-by: Maxim Postautov <54762420+mpstv@users.noreply.github.com>
* Update files/ru/web/api/validitystate/badinput/index.html
Co-authored-by: Maxim Postautov <54762420+mpstv@users.noreply.github.com>
* Update files/ru/web/api/validitystate/index.html
Co-authored-by: Maxim Postautov <54762420+mpstv@users.noreply.github.com>
* Update files/ru/web/api/validitystate/index.html
Co-authored-by: Maxim Postautov <54762420+mpstv@users.noreply.github.com>
* Update files/ru/web/api/validitystate/stepmismatch/index.html
Co-authored-by: Maxim Postautov <54762420+mpstv@users.noreply.github.com>
* Update files/ru/web/api/validitystate/index.html
Co-authored-by: Maxim Postautov <54762420+mpstv@users.noreply.github.com>
* Update files/ru/web/api/validitystate/toolong/index.html
Co-authored-by: Maxim Postautov <54762420+mpstv@users.noreply.github.com>
* Update files/ru/web/api/validitystate/typemismatch/index.html
Co-authored-by: Maxim Postautov <54762420+mpstv@users.noreply.github.com>
* Update files/ru/web/api/validitystate/typemismatch/index.html
Co-authored-by: Maxim Postautov <54762420+mpstv@users.noreply.github.com>
* Update files/ru/web/api/validitystate/typemismatch/index.html
Co-authored-by: Maxim Postautov <54762420+mpstv@users.noreply.github.com>
Co-authored-by: Maxim Postautov <54762420+mpstv@users.noreply.github.com>
Diffstat (limited to 'files/ru/web/api/validitystate/stepmismatch')
-rw-r--r-- | files/ru/web/api/validitystate/stepmismatch/index.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/files/ru/web/api/validitystate/stepmismatch/index.html b/files/ru/web/api/validitystate/stepmismatch/index.html new file mode 100644 index 0000000000..3a29e316b5 --- /dev/null +++ b/files/ru/web/api/validitystate/stepmismatch/index.html @@ -0,0 +1,38 @@ +--- +title: ValidityState.stepMismatch +slug: Web/API/ValidityState/stepMismatch +tags: + - API + - Constraint Validation API + - DOM + - Свойство + - Справочник +browser-compat: api.ValidityState.stepMismatch +--- +<p>Доступное только для чтения свойство <strong><code>stepMismatch</code></strong> объекта <strong><code><a href="/ru/docs/Web/API/ValidityState">ValidityState</a></code></strong> указывает, соответствует ли значение {{HTMLElement("input")}} после изменения пользователем ограничениям, установленным атрибутом <code>step</code>.</p> + +<p>Если поле является числовым, включая типы {{HTMLElement("input/date", "date")}}, {{HTMLElement("input/month", "month")}}, {{HTMLElement("input/week", "week")}}, {{HTMLElement("input/time", "time")}}, {{HTMLElement("input/datetime-local", "datetime-local")}}, {{HTMLElement("input/number", "number")}}, {{HTMLElement("input/range", "range")}} и значение атрибута <code>step</code> не равно <code>any</code>, в случае не соответствия поля ограниченям атрибутов <code><a href="/en-US/docs/Web/HTML/Attributes/step">step</a></code> и <code><a href="/en-US/docs/Web/HTML/Attributes/min">min</a></code>, то <code>stepMismatch</code> будет true. Если остаток от деления значения элемента формы за вычетом <code><a href="/en-US/docs/Web/HTML/Attributes/min">min</a></code> на <code><a href="/en-US/docs/Web/HTML/Attributes/step">step</a></code>, (которое по умолчаиню равно 1) не равен нулю, то это является несоответствием.</p> + +<p>Учитывая следующее:</p> + +<pre class="brush: html"><input type="number" min="20" max="40" step="2"/></pre> + +<p>если <code>(value - min) % 2 != 0</code>, <code>stepMismatch</code> будет true.</p> + +<p>Если true, элемент соответствует CSS-псевдоклассам {{cssxref(":invalid")}} и {{cssxref(":out-of-range")}}.</p> + +<h2 id="Specifications">Спецификации</h2> + +{{Specifications}} + +<h2 id="Browser_compatibility">Совместимость с браузерами</h2> + +<p>{{Compat}}</p> + +<h2 id="See_also">Смотрите также</h2> + +<ul> + <li><a href="/ru/docs/Web/Guide/HTML/HTML5/Constraint_validation">Валидация ограничений</a></li> + <li><a href="/ru/docs/Learn/Forms/Form_validation">Валидация форм на стороне клиента</a></li> + <li><a href="/en-US/docs/Web/HTML/Attributes/step">Атрибут <code>step</code></a></li> +</ul> |