HTML <input> minlength 属性

❮ HTML <input> 标签

实例

最小长度为8个字符的 <input> 元素:

<form action="/action_page.php">
  <label for="password">Password:</label>
  <input type="password" id="password" name="password" minlength="8"><br><br>
  <input type="submit" value="提交">
</form>
亲自试一试 »

定义和用法

minlength 属性指定输入字段中所需的最小字符数。

注意: minlength 属性可以与 type="text", type="search", type="url", type="tel", type="email", 和 type="password" 一起使用。


浏览器支持

表中的数字表示支持该属性的第一个浏览器版本。

属性
minlength 40.0 17.0 51.0 10.1 27.0

语法

<input minlength="number">

属性值

描述
number <input> 元素中所需的最小字符数

❮ HTML <input> 标签