如何在javascript中从日期获取月份?

21 浏览
0 Comments

如何在javascript中从日期获取月份?

这个问题已经有了答案:

如何从日期对象中获取年/月/日?

如何在JavaScript中获取当前日期?

我正在尝试从我的日期变量中获取月份。

date=Date.now();
console.log(date); 
>>2019-12-04T08:55:48.972Z

当我使用getMonth()时,我遇到了错误,我想从这个日期中获取月份。

console.log(date.getMonth());
error:- getMonth is not a function

admin 更改状态以发布 2023年5月22日
0
0 Comments

你需要日期对象来实现这个功能。

试试这个:

let date = new Date();
console.log(date.getMonth()+1)

0
0 Comments

你可以尝试这个。\n

let date= new Date();
console.log(date.getMonth()); 

\n

let date= new Date('2019-10-04T08:55:48.972Z');
console.log(date.getMonth()+1); 

0