當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML maxlength屬性用法及代碼示例


它指定元素中允許的最大字符數。
可以在以下元素上使用它:

  1. <輸入>
  2. <textarea>

例子:

  1. <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>

    輸出:

  2. <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




相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML maxlength Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。