当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。