所以我有一个函数,它返回当月的第一天。我想要的确切时间是设定为开始日期,即午夜。
function firstDayOfMonth() {
var d = new Date(Date.apply(null, arguments));
d.setDate(1);
return d.toISOString();
}
答案 0 :(得分:1)
在d.setDate(1)
d.setUTCHours(0, 0, 0, 0);
或当地时间
d.setHours(0, 0, 0, 0);