内容目录
setMonth()
函数用于基于当地时间设置当前Date对象中的月份值。也就是"年月日"中"月"的数值。setMonth()
函数还可同时设置日期值。
该函数属于Date对象,所有主流浏览器均支持该函数。
语法
date.setMonth( month[, dateValue ] )
参数
参数 | 描述 |
---|---|
month | Number类型指定的月份值。 |
dateValue | 可选/Number类型指定的日期值。 |
setMonth()
函数的所有参数都可以超出常规取值范围。例如:参数month
可以超出常规的0 ~ 11的取值范围;参数dateValue
可以超出常规的1 ~ 31的取值范围;并且都可以为负数。Date
对象内部会自动计算并转换为相应的日期。
注意,参数month
的值比实际月份小1。
返回值
setMonth()
函数没有返回值(或者说,返回值为undefined
)。
示例&说明
//定义一个Date对象"2013-05-15 00:00:00"
var date = new Date(2013, 4, 15, 0, 0, 0);
document.writeln( date.toLocaleString() ); // 2013年5月15日 0:00:00
date.setMonth(0);
document.writeln( date.toLocaleString() ); // 2013年1月15日 0:00:00
date.setMonth(-15, 0);
document.writeln( date.toLocaleString() ); // 2011年9月30日 0:00:00
date.setMonth(12, 5);
document.writeln( date.toLocaleString() ); // 2012年1月5日 0:00:00
0 条评论
撰写评论