我试着获得月和日但我的文字的价值不同:
var fech = new Date("2021-02-28T00:00:00");
document.writeln("Year=" + fech.getFullYear());
document.writeln("Month=" + fech.getMonth());
document.writeln("Day=" + fech.getDay());
结果是:
Year=2021 Month=1 Day=0
答案 0 :(得分:2)
答案 1 :(得分:0)
GetMonth()返回数月,在本例中为2月,使用0索引,2月在这种情况下实际上是1月。如果需要获取数字,请使用getMonth()+ 1.
@MátéSafranka也解释了当天的问题!