如何从JavaScript中的日期对象生成月份名称(例如:Oct / October)?
var objDate = new Date("10/11/2009");
Shorter version:
(较短的版本:)
const monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ]; const d = new Date(); document.write("The current month is " + monthNames[d.getMonth()]);
Note (2019-03-08) - This answer by me which I originally wrote in 2009 is outdated.
(注意 (2019-03-08)-我最初在2009年写下的这个答案已经过时。)
(请参阅David Storey的答案以获得更好的解决方案。)
1.4m articles
1.4m replys
5 comments
57.0k users