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


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


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

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

這個getUTCMonth()Date 對象的函數根據世界時返回給定日期的月份(0 代表一月等等......)。

用法

其語法如下

dateObj.getUTCMonth();

示例

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('September 26, 1989 12:4:25:96');
      document.write(dateObj.getUTCMonth());
   </script>
</body>
</html>

輸出

8

示例

如果您在創建日期對象時沒有提到一年中的月份,則此函數根據世界時返回 0。

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

輸出

0

示例

同樣,如果您在創建日期對象時沒有傳遞任何內容,則此函數根據世界時返回當年的當前月份。

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date();
      document.write("Month of the year:+ "dateObj.getUTCMonth());
   </script>
</body>
</html>

輸出

Month of the year:9

相關用法


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