JavaScript setUTCMonth() 方法

Date 对象参考手册 JavaScript Date 对象

实例

将月份设置为 4 (4月份):

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

d 结果输出:

点我分享笔记