当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Input Text autocomplete用法及代码示例


HTML DOM中的DOM输入文本自动完成属性用于设置或返回输入文本字段的自动完成属性的值。自动完成属性用于指定自动完成属性具有“on”值还是“off”值。在浏览器上将autocomplete属性设置为时,浏览器将自动完成用户之前输入的值。

用法:

  • 它返回输入文本自动完成属性。
    textObject.autocomplete
  • 它用于设置输入文本的自动完成属性。
    textObject.autocomplete = "on|off"

属性值:它包含下面列出的两个值:


  • on:它是默认值。它会自动完成值。
  • off:它定义了用户应填写文本输入字段的值。它不会自动完成值。

返回值:它返回一个表示自动完成状态的字符串值

例:本示例说明了如何返回属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Text autocomplete  Property 
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>DOM Input Text autocomplete Property</h2>  
            <form id="myGeeks"> 
    <input type="text" id="text_id" name="geeks" autocomplete="on">  
                 </form> 
                 <br> 
    <button onclick="myGeeks()">Click Here!</button>  
      
    <p id="GFG" style="font-size:25px;"></p>  
      
    <!-- script to return the autocomplete  Property-->
    <script>  
        function myGeeks() {  
            var txt = document.getElementById("text_id").autocomplete; 
            document.getElementById("GFG").innerHTML = txt; 
        }  
    </script>  
</body>  
  
</html>                     

输出:
在单击按钮之前:

单击按钮后:

示例2:本示例说明了如何设置属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Text autocomplete  Property 
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>DOM Input Text autocomplete Property</h2>  
            <form id="myGeeks"> 
    <input type="text" id="text_id" name="geeks" autocomplete="on">  
                 </form> 
                 <br> 
    <button onclick="myGeeks()">Click Here!</button>  
      
    <p id="GFG" style="font-size:25px;"></p>  
      
    <!-- script to return the autocomplete  Property-->
    <script>  
        function myGeeks() {  
            var txt = document.getElementById("text_id").autocomplete = "off"; 
            document.getElementById("GFG").innerHTML =  
          "The value of the autocomplete attribute was changed to " + txt; 
        }  
    </script>  
</body>  
  
</html>                     

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM输入支持的浏览器文本自动完成属性:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Text autocomplete Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。