最大长度为 10 个字符的 <input> 元素:
<form action="/action_page.php"> <label for="username">用户名:</label> <input type="text" id="username" name="username" maxlength="10"><br><br> <input type="submit" value="提交"> </form>
maxlength
属性指定 <input>
元素中允许的最大字符数。
表中的数字指定了完全支持该属性的第一个浏览器版本。
属性 Attribute | |||||
---|---|---|---|---|---|
maxlength | Yes | Yes | Yes | Yes | Yes |
<input maxlength="number">
值 Value | 描述 Description |
---|---|
number | <input> 元素中允许的最大字符数。 默认值为 524288 |