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


JavaScript Date setMonth()用法及代码示例


下面是Date setMonth()方法的示例。

  • 例:
    <script> 
       // Here a date has been assigned 
       // while creating Date object 
       var dateobj =  
       new Date('October 13, 1996 05:35:32'); 
      
       // new month of January is being set in above Date 
       // Object with the help of setMonth() function 
       dateobj.setMonth(0); 
      
       // new month from above Date Object is 
       // being extracted using getMonth() 
       var B = dateobj.getMonth(); 
      
       // Printing new month 
       document.write(B); 
    </script>
  • 输出:
    0

date.setMonth()方法用于将月份设置为使用Date()构造函数创建的日期对象。

用法:

DateObj.setMonth(month_Value);

参数:该方法接受上述和以下描述的单个参数:

  • month_Value:此参数保存我们要在使用Date()构造函数创建的日期中设置的月份值。

返回值:它返回由setMonth()方法设置的新的即更新的月份。



注意:DateObj是使用Date()构造函数创建的有效Date对象,在其中我们要设置月份。月份的值从0到11,因为从一月到十二月,一年中的月份总数为12。值0表示一月,1表示二月,依此类推,直到11表示十二月。

上述方法的更多代码如下:

程序1:如果在Date()构造函数中我们在创建日期对象时没有给出任何月份,则setMonth()方法仍然可以在创建的日期对象中设置新的月份。

<script> 
   // Here month has not been assigned 
   // while creating Date object 
   var dateobj = new Date('1996, 05:35:32'); 
  
   // New month of 2 is being set in above Date 
   // Object with the help of setMonth() method 
   dateobj.setMonth(2); 
  
   // New month from above Date Object is 
   // being extracted using getMonth() 
   var B = dateobj.getMonth(); 
  
   // Printing new month 
   document.write(B); 
</script>

输出:

2

程序2:如果在Date()构造函数中未提供任何参数,则setMonth()方法仍然可以设置月份,但年份,日期等仍为当前值。这里11是12月的新月,1是当前日期,而2018是当前年份。

<script> 
   // Here nothing has been assigned 
   // while creating Date object 
   var dateobj = new Date(); 
  
   // New month of 11 is being set in above Date 
   // Object with the help of setMonth() method 
   dateobj.setMonth(11); 
  
   // Month from above Date Object is 
   // being extracted using getMonth() 
   var B = dateobj.getMonth(); 
  
   // Date from above Date Object is 
   // being extracted using getDate() 
   var C = dateobj.getDate(); 
  
   // Year from above Date Object is 
   // being extracted using getFullYear() 
   var D = dateobj.getFullYear(); 
  
   // Printing new month 
   document.write(B + "<br />"); 
  
   // Printing current date 
   document.write(C + "<br />"); 
  
   // Printing current year 
   document.write(D); 
</script>

输出:

11
1
2018

程序3:如果将月15的值作为setMonth()方法的参数给出,则它将3设置为月,因为月范围是0到11,因此(15%12 = 3)。
这里3是4月的新月,由于月份范围是0到11,即总计12,所以该年份从1996年变为1997,我们将新月份设置为3,从1996年起将年份增加1到1997,月份变为3 。

<script> 
   // Here date has been assigned 
   // while creating Date object 
   var dateobj =  
   new Date('October 13, 1996 05:35:32'); 
  
   // new month of 15 is being set in above Date 
   // Object with the help of setMonth() function 
   dateobj.setMonth(15); 
  
   // Month from above Date Object is 
   // being extracted using getMonth() 
   var B = dateobj.getMonth(); 
  
   // Year from above Date Object is 
   // being extracted using getFullYear() 
   var C = dateobj.getFullYear(); 
  
   // Printing new month 
   document.write(B + "<br />"); 
  
   // Printing new year 
   document.write(C); 
</script>

输出:

3
1997

支持的浏览器:下面列出了JavaScript Date setMonth()方法支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • Safari




相关用法


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