每个月底都有JavaScript月历错误

时间:2019-01-31 12:03:01

标签: javascript jquery calendar

有人可以向我解释javascript的行为,为什么它在每个月的一月底后立即返回进行?

for (var i = 0; i < 12; i++) {
  var today = new Date();
  today.setMonth(today.getMonth() + i); //0
  var month = today.toLocaleString('EN', {
    month: "long"
  });
  console.log(month);
}

  

1月,3月,3月,5月,5月,7月,7月,8月,10月,10月,12月,12月

0 个答案:

没有答案