JavaScript setMonth() 方法

Date 对象参考手册 JavaScript Date 对象

实例

设置月份参数为 4 (5月份):

var d = new Date();
d.setMonth(4);

d 输出结果:

点我分享笔记