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


HTML Input Email minLength用法及代碼示例


HTML DOM中的Input Email minLength屬性用於設置或返回Email Input Field的minlength屬性值。它指定電子郵件字段中允許的最少字符數。

用法:

  • 它返回Input Email minLength屬性。
    emailObject.minLength
  • 它用於設置輸入電子郵件的minLength屬性。
    emailObject.minLength = number

屬性值:它包含單個值,用於指定“電子郵件最大長度”字段中允許的最小字符數。



返回值:它返回一個數字值,該值表示“電子郵件最小長度”字段中允許的最小字符數。

範例1:本示例說明如何返回Input Email minLength屬性。

<!DOCTYPE html>  
<html>  
      
<head>  
    <title>  
        HTML DOM Input Email maxlength Property  
    </title>  
</head>      
  
<body style="text-align:center;">  
  
    <h1> GeeksforGeeks</h1>  
  
    <h2>DOM Input Email maxLength Property</h2>  
      
    <form id="myGeeks">  
        E-mail:<input type="email" id="email" maxlength="45"
            value="manaschhabra22@gmail.com">  
    </form><br>  
      
    <button onclick="myGeeks()">  
        Click Here!  
    </button>  
      
    <p id="GFG" style="font-size:25px;color:green;"></p>  
      
    <!-- Script to access input element with  
            type email attribute -->
    <script>  
        function myGeeks() {  
            var em = document.getElementById("email").maxLength;  
            document.getElementById("GFG").innerHTML = em;  
        }  
    </script>  
</body>  
  
</html>                     

輸出:

  • 在單擊按鈕之前:
  • 單擊按鈕後:

範例2:本示例說明如何設置“輸入電子郵件”的maxLength屬性。

<!DOCTYPE html>  
<html>  
      
<head>  
    <title>  
        HTML DOM Input Email minlength Property  
    </title>  
</head>      
  
<body style="text-align:center;">  
  
    <h1> GeeksforGeeks</h1>  
  
    <h2>DOM Input Email minLength Property</h2>  
      
    <form id="myGeeks">  
        E-mail:<input type="email" id="email" minlength="45"
            value="manaschhabra22@gmail.com">  
    </form><br>  
      
    <button onclick="myGeeks()">  
        Click Here!  
    </button>  
      
    <p id="GFG" style="font-size:25px;color:green;"></p>  
      
    <!-- Script to access input element with  
            type email attribute -->
    <script>  
        function myGeeks() {  
            var em = document.getElementById("email").minLength="23";  
            document.getElementById("GFG").innerHTML = em;  
        }  
    </script>  
</body>  
  
</html>                     

輸出:

  • 在單擊按鈕之前:
  • 單擊按鈕後:

支持的瀏覽器:下麵列出了HTML DOM輸入電子郵件minLength屬性支持的瀏覽器:

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



相關用法


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