HTML <input> maxlength 屬性
定義和用法
maxlength
屬性規定 <input> 元素中允許的最大字符數。
實例
最大長度為 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>
語法
<input maxlength="number">
屬性值
值 | 描述 |
---|---|
number | <input> 元素中允許的最大字符數。默認值為 524288。 |
瀏覽器支持
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
支持 | 支持 | 支持 | 支持 | 支持 |