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


HTML Input Week stepUp()用法及代码示例


HTML DOM中的输入周stepUp()方法用于将周字段的值增加给定数字。这种方法只会增加几周而不是几年的价值。

用法:

weekObject.stepUp( number )

参数:它接受强制的单个参数编号。它指定要增加的星期数。默认情况下,周数增加1。


返回值:它不返回任何值。

例:本示例使用输入周stepUp()方法将周增加2。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Week stepUp() Method 
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>DOM Input Week stepUp() Method</h2>  
      
    <form id="myGeeks"> 
        <input type="week" id="week_id" name="geeks"
            value="2019-W03">  
    </form><br> 
      
    <button onclick="myGeeks()"> 
        Click Here! 
    </button>  
      
    <!-- Script to increment the week -->
    <script>  
        function myGeeks() {  
            document.getElementById("week_id").stepUp(2) ; 
        }  
    </script>  
</body>  
  
</html>                    

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM Input Week stepUp()方法支持的浏览器:

  • 谷歌浏览器
  • Internet Explorer 12.0
  • Opera
  • Safari


相关用法


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