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


JavaScript Date.setMonth()用法及代碼示例


Date 對象是一種內置於 JavaScript 語言的數據類型。日期對象是使用 new Date( ) 創建的,如下所示。

創建 Date 對象後,可以使用多種方法對其進行操作。大多數方法隻允許您使用本地時間或 UTC(通用或 GMT)時間獲取和設置對象的年、月、日、小時、分鍾、秒和毫秒字段。

日期對象的 setMonth() 函數接受一個表示月份的整數,並用它替換當前日期中月份的值。

用法

其語法如下

dateObj.setMonth();

示例

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('September 26, 89 5:4:25:96');
      document.write("Current date:"+dateObj.toUTCString());
      document.write("<br>");
      dateObj.setMonth(9);
      document.write("Date after setting the month:"+dateObj.toUTCString());
   </script>
</body>
</html>

輸出

Current date:Mon, 25 Sep 1989 23:34:25 GMT
Date after setting the month:Wed, 25 Oct 1989 23:34:25 GMT

示例

盡管您在創建日期對象時沒有提及當天的分鍾數,但您仍然可以使用 setMonth() 函數設置它。

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('1989 5:4:25:96');
      dateObj.setMonth(8);
      document.write(dateObj.toString());
   </script>
</body>
</html>

輸出

Fri Sep 01 1989 05:04:25 GMT+0530 (India Standard Time)

示例

同樣,雖然在創建日期對象時沒有將任何值傳遞給構造函數,但您仍然可以使用此函數設置 setMonth(),並且日期、年份和其他值與當前日期(和時間)中的值保持相同。

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date();
      dateObj.setMonth(8);
      document.write(dateObj.toString());
   </script>
</body>
</html>

輸出

Tue Sep 18 2018 22:13:48 GMT+0530 (India Standard Time)

相關用法


注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 Date.setMonth() function in JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。