HTMLInputElement:max 属性
max
属性是 HTMLInputElement
接口的一个属性,它反映了 <input>
元素的 max
属性,该属性通常定义数字或日期时间输入的最大有效值。如果未显式设置该属性,则 max
属性为空字符串。
值
表示元素 max
值的字符串,如果未显式设置 max
,则为空字符串。
示例
js
const inputElement = document.querySelector("#time");
console.log(inputElement.max); // the current value of the max attribute
inputElement.max = "18:00:00"; // sets the max value to 6pm
规范
规范 |
---|
HTML 标准 # dom-input-max |
浏览器兼容性
BCD 表格仅在启用了 JavaScript 的浏览器中加载。