aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/validitystate/rangeunderflow
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/validitystate/rangeunderflow')
-rw-r--r--files/ru/web/api/validitystate/rangeunderflow/index.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/files/ru/web/api/validitystate/rangeunderflow/index.html b/files/ru/web/api/validitystate/rangeunderflow/index.html
new file mode 100644
index 0000000000..38fa11c8c8
--- /dev/null
+++ b/files/ru/web/api/validitystate/rangeunderflow/index.html
@@ -0,0 +1,38 @@
+---
+title: ValidityState.rangeUnderflow
+slug: Web/API/ValidityState/rangeUnderflow
+tags:
+ - API
+ - Constraint Validation API
+ - DOM
+ - Свойство
+ - Справочник
+browser-compat: api.ValidityState.rangeUnderflow
+---
+<p>Доступное только для чтения свойство <strong><code>rangeUnderflow</code></strong> объекта <strong><code><a href="/ru/docs/Web/API/ValidityState">ValidityState</a></code></strong> указывает, соответствует ли значение {{HTMLElement("input")}} после изменения пользователем ограничениям, установленным атрибутом <code><a href="/en-US/docs/Web/HTML/Attributes/min">min</a></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>min</code>, если содержимое поля не соответствует ограничению атрибута <code><a href="/en-US/docs/Web/HTML/Attributes/step">min</a></code>, свойство <code>rangeUnderflow</code> будет true.</p>
+
+<p>Учитывая следующее:</p>
+
+<pre class="brush: html">&lt;input type="number" min="20" max="40" step="2"/&gt;</pre>
+
+<p>если <code>value &lt; 20</code>, <code>rangeUnderflow</code> будет true. Если <code>true</code>, элемент соответствует 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>{{domxref("ValidityState.rangeOverflow")}}</li>
+ <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>
+ <li><a href="/en-US/docs/Web/HTML/Attributes/max">Атрибут <code>max</code></a></li>
+</ul>