當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。