在JavaScript中更改日期格式?

时间:2014-08-14 17:09:30

标签: javascript date datetime

在JavaScript中:

var todayDate = new Date();

如何将实际日期转换为此格式(示例):

Mon Aug 25 2014 

2 个答案:

答案 0 :(得分:2)

toDateString()为您提供完全相同的格式。

var todayDate = new Date();
todayDate.toDateString(); // "Thu Aug 14 2014"

答案 1 :(得分:0)

您可以使用Moment.js这样的插件,也可以只使用...todayDate.getDay() + ' ' + todayDate.getFullYear()