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


HTML Input Reset autofocus用法及代码示例


HTML DOM中的“输入重置自动对焦”属性用于设置或返回在页面加载时输入重置字段是否应获得焦点。它反映了HTML自动对焦属性。

用法:

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

属性值:


  • true:它设置了重置字段的焦点。
  • false:它具有默认值。它定义了重置字段未获得焦点。

返回值:它返回一个布尔值,表示重置字段是否自动对焦。

范例1:本示例返回Input reset autofocus属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input reset autofocus property  
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1 style="color:green;">  
        GeeksForGeeks  
    </h1>  
  
    <h2>DOM Input reset autofocus Property</h2>  
      
    <form id ="myGeeks"> 
        <input type="reset" id="GeekReset" name="geeks"
            value="Reset form" autofocus> 
    </form> 
      
    <p> 
        Click on below button to return the Property 
    </p>      
  
    <button onclick="myGeeks()">  
        Click Here  
    </button>  
      
    <p id="Geek_p" style="color:green; font-size:30px;"></p> 
      
    <!-- Script to use Input reset autofocus Property -->
    <script>  
        function myGeeks() {  
            var x = document.getElementById("GeekReset").autofocus; 
            document.getElementById("Geek_p").innerHTML = x;  
        }  
    </script>  
</body>  
  
</html>                    

输出:
单击按钮之前:

单击按钮后:

范例2:本示例说明了如何设置“输入重置”自动对焦属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input reset autofocus property  
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1 style="color:green;">  
        GeeksForGeeks  
    </h1>  
  
    <h2> 
        DOM Input reset autofocus Property 
    </h2>  
      
    <form id ="myGeeks"> 
        <input type="reset" id="GeekReset" name="geeks"
            value="Reset form" autofocus> 
    </form> 
  
    <p> 
        Click on below button to set the Property 
    </p><br> 
      
    <button onclick="myGeeks()">  
        Click Here  
    </button>  
      
    <p id="Geek_p" style="color:green; font-size:30px;"></p> 
      
    <!-- Script to use Input reset autofocus Property -->
    <script>  
        function myGeeks() {  
            var x = document.getElementById("GeekReset").autofocus 
                    = false; 
                      
            document.getElementById("Geek_p").innerHTML = x;  
        }  
    </script>  
</body>  
  
</html>                    

输出:
单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM Input Reset autofocus属性支持的浏览器:

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


相关用法


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