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


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


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

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

Date 對象的 getMonth() 函數返回其當前日期的蛾(0 代表一月等等...)。

用法

其語法如下

dateObj.getMonth();

示例

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('september 26, 89 12:4:25:96');
      document.write("Month of the year:"+dateObj.getMonth());
   </script>
</body>
</html>

輸出

Month of the year:8

示例

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

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('89 12:4:25:96');
      document.write("Month of the year:"+dateObj.getmonth());
   </script>
</body>
</html>

輸出

Month of the year:0

示例

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

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

輸出

Month of the year:9

相關用法


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