HTMLInputElement:min 属性

min 属性是 HTMLInputElement 接口的一个属性,它反映了 <input> 元素的 min 属性,该属性通常定义数字或日期时间输入的最小有效值。如果未显式设置该属性,则 min 属性为空字符串。

表示元素 min 值的字符串,如果未显式设置 min,则为空字符串。

示例

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

规范

规范
HTML 标准
# dom-input-min

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅