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


HTML Input Color autofocus用法及代码示例


HTML DOM中的DOM输入颜色自动对焦属性用于设置或返回在页面加载时颜色选择器是否应自动获得焦点。此属性用于反映HTML自动对焦属性。

用法:

  • 它返回自动对焦属性。
    colorObject.autofocus
  • 用于设置自动对焦属性。
    colorObject.autofocus = true|false

属性值:


  • true:拾色器获得自动对焦。
  • false:它具有默认值。拾色器没有聚焦。

返回值:它返回一个布尔值,该布尔值表示页面加载时颜色选择器是否获得焦点。

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Color autofocus Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
    <h1> 
        GeeksForGeeks 
    </h1> 
    <h2>  
        HTML DOM Input Color autofocus Property  
    </h2> 
  
    <form id="myGeeks"> 
        <label> 
            Select your favorite color:
        </label> 
        <input type="color"
               value="#009900"
               name="Geek_color"
               id="color" 
               autofocus> 
    </form> 
  
    <button onclick="myGeeks()"> 
        Click Here! 
    </button> 
  
    <p id="GFG" 
       style="color:green; 
              font-size:24px;"> 
    </p> 
  
    <script> 
        function myGeeks() { 
            var x = 
                document.getElementById( 
                    "color").autofocus; 
  
            document.getElementById( 
                "GFG").innerHTML = x; 
        } 
    </script> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Color autofocus Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
    <h1> 
        GeeksForGeeks 
    </h1> 
    <h2>  
        HTML DOM Input Color autofocus Property  
    </h2> 
  
    <form id="myGeeks"> 
        <label> 
          Select your favorite color:
      </label> 
        <input type="color" 
               value="#009900"
               name="Geek_color"
               id="color"
               autofocus> 
    </form> 
  
    <button onclick="myGeeks()"> 
        Click Here! 
    </button> 
  
    <p id="GFG"
       style="color:green; 
              font-size:24px;"> 
  </p> 
  
    <script> 
        function myGeeks() { 
            var x =  
                document.getElementById( 
                  "color").autofocus = false; 
            
            document.getElementById( 
              "GFG").innerHTML = x; 
        } 
    </script> 
</body> 
  
</html>

输出:

在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM输入颜色自动对焦属性支持的浏览器:

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


相关用法


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