HTML <input> maxlength 属性
实例
最大长度为 10 个字符的 <input> 元素:
<form
action="/action_page.php">
<label for="username">Username:</label>
<input type="text"
id="username" name="username" maxlength="10"><br><br>
<input
type="submit" value="提交">
</form>
亲自试一试 »
定义和用法
maxlength 属性规定 <input> 元素中允许的最大字符数。
浏览器支持
表中的数字表示支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
maxlength | Yes | Yes | Yes | Yes | Yes |
语法
<input maxlength="number">
属性值
值 | 描述 |
---|---|
number | 在 <input> 元素中允许的最大字符数。默认值为524288 |
❮ HTML <input> 标签