setMonth()
优质
小牛编辑
130浏览
2023-12-01
描述 (Description)
setMonth()方法根据本地时间设置指定日期的月份。
语法 (Syntax)
下面给出了setMonth()方法的语法。
Date.setMonth(monthValue[, dayValue])
参数细节 (Parameter Detail)
monthValue - 0到11之间的整数(表示1月到12月的月份)。
dayValue - 1到31之间的整数,表示该月的某天。
如果未指定dayValue参数,则使用从getDate方法返回的值。 如果指定的参数超出预期范围,则setMonth会尝试相应地更新Date对象中的日期信息。 例如,如果对monthValue使用15,则年份将增加1(年+ 1),3将用于月份。
例子 (Example)
以下示例演示了CoffeeScript中setMonth()方法的用法。 将此代码保存在名为date_setmonth.coffee的文件中。
dt = new Date "February 19, 2016 23:15:00"
dt.setMonth 5
console.log dt
打开command prompt并编译.coffee文件,如下所示。
c:\> coffee -c date_setmonth.coffee
在编译时,它为您提供以下JavaScript。
// Generated by CoffeeScript 1.10.0
(function() {
var dt;
dt = new Date("February 19, 2016 23:15:00");
dt.setMonth(5);
console.log(dt);
}).call(this);
现在,再次打开command prompt ,然后运行CoffeeScript文件,如下所示。
c:\> coffee date_setmonth.coffee
执行时,CoffeeScript文件生成以下输出。
Sun Jun 19 2016 23:15:00 GMT+0530 (India Standard Time)