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


HTML Input Week autofocus用法及代码示例


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

用法:

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

属性值:


  • true:它设置了星期字段的焦点。
  • false:它具有默认值。它定义了星期字段没有得到关注。

返回值:它返回一个布尔值,表示星期字段是否自动聚焦。

示例1:本示例返回Input Week自动对焦属性。

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

输出
在单击按钮之前:

单击按钮后:

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

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Week autofocus Property 
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>DOM Input Week autofocus Property</h2>  
            <form id="myGeeks"> 
    <input type="week" id="week_id" name="geeks" >  
                </form> 
                <br> 
    <button onclick="myGeeks()">Click Here!</button>  
      
    <p id="GFG" style="font-size:20px;"></p>  
      
    <!-- Script to set the autofocus Property-->
    <script>  
        function myGeeks() {  
            var gfg = document.getElementById("week_id"); 
            gfg.autofocus = true; 
            var g =    gfg.autofocus;         
            document.getElementById("GFG").innerHTML = g; 
        }  
    </script>  
</body>  
  
</html>                    

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下表列出了DOM输入Week autofocus属性支持的浏览器:

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

注意:在Firefox中,输入type =“ week”元素不显示任何日期字段或日历。



相关用法


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