Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. HTMLInputElement
  4. max

HTMLInputElement: max property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Themax property of theHTMLInputElement interface reflects the<input> element'smax attribute, which generally defines the maximum valid value for a numeric or date-time input. If the attribute is not explicitly set, themax property is an empty string.

Value

A string representing the element'smax value or an empty string if nomax is explicitly set.

Example

js
const inputElement = document.querySelector("#time");console.log(inputElement.max); // the current value of the max attributeinputElement.max = "18:00:00"; // sets the max value to 6pm

Specifications

Specification
HTML
# dom-input-max

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2026 Movatter.jp