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


HTML Input Number autocomplete用法及代碼示例


HTML DOM中的輸入數字自動完成屬性用於設置或返回輸入數字字段的自動完成屬性的值。自動完成屬性用於指定自動完成屬性具有“on”值還是“off”值。當autocomplete屬性設置為on時,瀏覽器將根據用戶之前輸入的內容自動完成值。

用法:

  • 它返回輸入號自動完成屬性。
    number.autocomplete
  • 用於設置輸入號碼自動完成屬性。
    numberObject.autocomplete = "on | off" 

屬性值:它包含下麵列出的兩個值:


  • on:它是默認值。它會自動完成值。
  • off:它定義了用戶應填寫URL輸入字段的值。它不會自動完成值。

返回值:它返回一個表示自動完成狀態的字符串值。

範例1:本示例返回輸入數字自動完成屬性

<!DOCTYPE html>  
<html>  
  
<head> 
    <title> 
        HTML DOM Input Number 
        autocomplete Property 
    </title> 
</head> 
  
<body style="text-align:center;">  
  
    <h1 style="color:green;">  
        GeeksForGeeks  
    </h1>  
  
    <h2>DOM Input Number autocomplete Property</h2>  
      
    <form id="myGeeks">  
        <input type="number" id="myNumber" step="5"
                name="geeks" placeholder="multiples of 5"
                autocomplete="on">  
    </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").autocomplete; 
              
            document.getElementById("demo").innerHTML = x; 
        }  
    </script>  
</body>  
  
</html>

輸出:

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

範例2:本示例設置“輸入數字”自動完成屬性。

<!DOCTYPE html>  
<html>  
  
<head> 
    <title> 
        HTML DOM Input Number 
        autocomplete Property 
    </title> 
</head> 
  
<body style="text-align:center;">  
  
    <h1 style="color:green;">  
        GeeksForGeeks  
    </h1>  
  
    <h2>DOM Input Number autocomplete Property</h2>  
      
    <form id="myGeeks">  
        <input type="number" id="myNumber" step="5"
            name="geeks" placeholder="multiples of 5"
            autocomplete="on">  
    </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").autocomplete ="off";                  
                  
            document.getElementById("demo").innerHTML 
                ="The value was changed to " + x; 
        } 
    </script> 
</body>  
  
</html>

輸出:

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

支持的瀏覽器:下麵列出了HTML DOM輸入數字自動完成屬性支持的瀏覽器:

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


相關用法


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