它指定元素中允許的最大字符數。
可以在以下元素上使用它:
- <輸入>
- <textarea>
例子:
- <input>元素的示例:
<!DOCTYPE html> <html> <body> <center> <h1 style="color:green;font-style:italic;"> GeeksForGeeks </h1> <h2 style="color:green;font-style:italic;"> maxlength attribute </h2> <form action=""> Username: <input type="text" name="usrname" maxlength="12"> <br> <br> Password: <input type="text" name="password" maxlength="10"> <br> <br> <input type="submit" value="Submit"> </form> </center> </body> </html>
輸出:
- <textarea>元素的示例:
<!DOCTYPE html> <html> <body> <center> <h1 style="color:green;font-style:italic;"> GeeksforGeeks </h1> <h2 style="color:green;font-style:italic;"> maxlength attribute </h2> <textarea rows="4" cols="50" maxlength="6"> write here somthing that you want.... </textarea> </center> </body> </html>
輸出:
支持的瀏覽器:下麵列出了maxlength屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML input maxlength用法及代碼示例
- HTML Textarea maxlength用法及代碼示例
- HTML Input Email maxLength用法及代碼示例
- HTML Input Password maxLength用法及代碼示例
- HTML Input Text maxLength用法及代碼示例
- HTML Input Search maxLength用法及代碼示例
- HTML Input URL maxLength用法及代碼示例
- AngularJS ng-maxlength用法及代碼示例
- HTML <html> xmlns屬性用法及代碼示例
- HTML scoped屬性用法及代碼示例
- HTML <th> valign屬性用法及代碼示例
- HTML <col> align屬性用法及代碼示例
- HTML poster屬性用法及代碼示例
- HTML Class屬性用法及代碼示例
- HTML style屬性用法及代碼示例
- HTML oninvalid用法及代碼示例
- HTML <select> autocomplete屬性用法及代碼示例
- HTML <table> bgcolor屬性用法及代碼示例
- HTML onsubmit用法及代碼示例
- HTML onunload用法及代碼示例
- HTML srcdoc屬性用法及代碼示例
- HTML Marquee truespeed用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML maxlength Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。