JavaScript中的Date.setMonth()函数

Date对象是JavaScript语言内置的数据类型。日期对象使用新的Date()创建,如下所示。

创建Date对象后,可以使用多种方法对其进行操作。大多数方法仅允许您使用本地时间或UTC(通用或GMT)时间来获取和设置对象的年,月,日,时,分,秒和毫秒字段。

setMonth()date对象的功能接受代表月份的整数,并用它替换当前日期中月份的值。

语法

其语法如下

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)