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


HTML minlength屬性用法及代碼示例


HTML minlength屬性用於指定用戶輸入到輸入字段或文本區域中的最小字符數(作為UTF-16代碼)。整數值必須以0或更高開頭。

用法:

<Element minlength="numeric">

屬性值:

  • number:它包含數值,即0或更高。

例:

<!DOCTYPE html>  
<html>  
  
<head> 
    <title> 
        HTML | minlength Attribute 
    </title> 
</head> 
  
<body style="text-align:center;">  
      
    <h1 style="color:green;">  
        GeeksForGeeks  
    </h1>  
  
    <h2>minlength attribute</h2>  
      
    <form action="">  
        Username:  
        <input type="text"
                name="usrname"
                minlength="10">  
        <br><br> 
          
        Password:  
        <input type="text"
                name="password"
                maxlength="10">  
        <br><br>  
          
        <input type="submit"
                value="Submit">  
    </form>  
</body>  
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML minlength屬性支持的瀏覽器:

  • 蘋果Safari 1.0
  • 穀歌瀏覽器1.0
  • Firefox 1.0
  • Opera 1.0
  • Internet Explorer 6.0
  • <




相關用法


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