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


HTML Input Number max用法及代碼示例


HTML DOM中的DOM輸入數字max屬性用於設置或返回數字字段的max屬性值。 max屬性定義數字字段的最大值。

用法:

  • 它返回max屬性。
    numberObject.max
  • 用於設置max屬性。
    numberObject.max = number

屬性值:它包含單個值,即數字,它指定用戶允許在數字字段中輸入的最大值。


返回值:它返回一個字符串值,該字符串值表示數字字段允許的最大數字。

示例1:本示例說明了如何返回輸入數max屬性。

<!DOCTYPE html>  
<html>  
  
    <body style="text-align:center;">  
  
        <h1 style="color:green;">  
            GeeksForGeeks  
        </h1>  
  
        <h2>DOM Input Number max Property</h2>  
             <form id="myGeeks"> 
        <input type="number"
            id="myNumber" step="5" name="geeks"
            placeholder="multiples of 5" max="10">  
            </form>    <br><br> 
        <button onclick="myFunction()">  
            Click Here!  
        </button>  
  
        <p id="demo" style="font-size:23px;color:green;"></p>  
  
        <script>  
            function myFunction() {  
                  
                // Accessing input value  
                var x =  
                document.getElementById("myNumber").max;                 
                document.getElementById("demo").innerHTML = x;  
            }  
        </script>  
  
    </body>  
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

示例2:本示例說明了如何設置輸入數max屬性。

<!DOCTYPE html>  
<html>  
  
    <body style="text-align:center;">  
  
        <h1 style="color:green;">  
            GeeksForGeeks  
        </h1>  
  
        <h2>DOM Input Number max Property</h2>  
             <form id="myGeeks"> 
        <input type="number"
            id="myNumber" step="5" name="geeks"
            placeholder="multiples of 5" max="10">  
            </form>    <br><br> 
        <button onclick="myFunction()">  
            Click Here!  
        </button>  
  
        <p id="demo" style="font-size:23px;color:green;"></p>  
  
        <script>  
            function myFunction() {  
                  
                // Accessing input value  
                var x =  
                document.getElementById("myNumber").max = 15;                 
                document.getElementById("demo").innerHTML =  
               "the value of the max attribute was changed to " + x;  
            }  
        </script>  
  
    </body>  
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:DOM輸入number max屬性支持的瀏覽器如下:

  • 穀歌瀏覽器
  • Internet Explorer 10.0以上
  • Firefox
  • Opera
  • Safari


相關用法


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