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


HTML Input Week defaultValue用法及代码示例


HTML DOM中的DOM Input Week defaultValue属性用于设置或返回Week字段的默认值。它是在value属性中指定的值。

用法:

  • 它返回defaultValue属性。
    weekObject.defaultValue
  • 它用于设置defaultValue属性。
    weekObject.defaultValue = value

属性值:


  • value:它指定星期字段的默认值。

返回值:它以字符串形式返回Week字段的值。

示例1:本示例返回Input Week属性的defaultValue。

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

输出
在单击按钮之前:

单击按钮后:

示例2:本示例说明了如何设置或更改defaultValue。

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

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:DOM输入Week defaultValue属性支持的浏览器如下:

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

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



相关用法


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