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


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


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

用法:

monthObject.stepUp(number)

参数:它接受一个必需的参数:


  • number它指定要增加的月份数。默认情况下,月份以1为增量。

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

例:本示例显示stepUp()方法的用法方式:

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

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM输入月份stepUp()方法支持的浏览器:

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


相关用法


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