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


HTML Input Search autocomplete用法及代码示例


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

用法:

  • 它返回输入搜索自动完成属性。
    searchObject.autocomplete
  • 它用于设置“输入”搜索自动完成属性。
    searchObject.autocomplete = "on|off"

属性值:


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

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

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Input Search autocomplete Property 
  </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Input Search autocomplete Property</h2> 
    <form id="myGeeks"> 
        <input type="Search"
               id="test"
               name="myGeeks" 
               placeholder="Type to search.." 
               value="GeeksForGeeks" 
               autocomplete="on"> 
    </form> 
    <br> 
    <br> 
    <button ondblclick="Access()">click here 
    </button> 
  
    <p id="check" 
       style="font-size:24px; 
              color:green;"> 
  </p> 
  
    <script> 
        function Access() { 
  
            // type="search"  
            var s = document.getElementById( 
                "test").autocomplete; 
            
            document.getElementById( 
                "check").innerHTML = s; 
        } 
    </script> 
  
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

示例2:本示例说明如何设置自动完成属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Input Search autocomplete Property 
  </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Input Search autocomplete Property</h2> 
    <form id="myGeeks"> 
        <input type="Search"
               id="test"
               name="myGeeks"
               placeholder="Type to search.." 
               value="GeeksForGeeks"
               autocomplete="on"> 
    </form> 
    <br> 
    <br> 
    <button ondblclick="Access()"> 
      click here 
    </button> 
  
    <p id="check" 
       style="font-size:24px; 
              color:green;"> 
  </p> 
  
    <script> 
        function Access() { 
  
            // type="search"  
            var s = document.getElementById( 
                "test").autocomplete = "off"; 
            
            document.getElementById( 
                "check").innerHTML =  
         "The value of the autocompletee" 
            +" attribute was changed to " 
            + s; 
        } 
    </script> 
  
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM Input Search自动完成属性支持的浏览器:

  • 谷歌浏览器
  • Internet Explorer 10.0以上
  • Firefox
  • Opera
  • Safari


相关用法


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