Movatterモバイル変換


[0]ホーム

URL:


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

HTMLInputElement: min 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.

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

Value

A string representing the element'smin value or an empty string if nomin is explicitly set.

Example

js
const inputElement = document.querySelector("#range");console.log(inputElement.min); // the current value of the min attributeinputElement.min = 0; // sets the min value to "0"

Specifications

Specification
HTML
# dom-input-min

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2026 Movatter.jp