HTMLInputElement: max プロパティ

maxHTMLInputElement インターフェースのプロパティで、この <input> 要素の max 属性を反映します。この属性は通常、数値または日付時刻入力の有効な最大値を定義します。この属性が明示的に設定されていない場合、max プロパティは空文字列となります。

この要素の max を表す文字列、または max が明示的に設定されていない場合は空文字列です。

js
const inputElement = document.querySelector("#time");
console.log(inputElement.max); // max 属性の現在の値
inputElement.max = "18:00:00"; // max 値を午後 6 時に設定

仕様書

Specification
HTML Standard
# dom-input-max

ブラウザーの互換性

BCD tables only load in the browser

関連情報