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


HTML <input> minlength屬性用法及代碼示例


HTML <input> minlength屬性用於定義<input> minlength屬性。整數值必須以0或更高開頭。

用法:

< input minlength="numeric"> 

屬性值:


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

例:

<!DOCTYPE html>  
<html> 
  
<body> 
    <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> 
    </center> 
</body> 
  
</html>

輸出:

支持的瀏覽器:<input> minlength Attribute支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果Safari
  • Opera


相關用法


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