JavaScript

It is a mechanism to check whether a form input value exceeds the maximum allowed value.

rangeOverflow

rangeOverflow は、フォーム要素(たとえば <input><textarea>)に設定された 最大値(max属性)を超えた入力 があるかどうかを判定できるプロパティです。

HTMLフォームのバリデーション機能の一部として使われ、ユーザーが入力した値が「大きすぎる」場合に true になります。

例えば、<input type="number" max="100"> と設定されているときに、ユーザーが「150」を入力すると rangeOverflowtrue になり、制御やエラーメッセージの表示に活用できます。