无法格式化/解析此日期

时间:2015-05-21 15:32:40

标签: javascript jquery grails

我的日期如下:

Thu May 21 2015 10:28:49 GMT-0500 (Central Daylight Time)

它来自fullCalendar.getDate()

我需要将此格式的日期格式化/解析为mm / dd / yyyy。

2 个答案:

答案 0 :(得分:1)

由于fullcalendar使用时刻js [http://fullcalendar.io/docs/utilities/date_formatting_string/],你可以试试下面的代码..如果你还没有包括时刻js ..包括它然后尝试..

moment(fullCalendar.getDate()).format("mm/DD/YYYY");

答案 1 :(得分:1)

我实际上只是通过谷歌搜索偶然发现了这一点,即使我没有通过搜索他们的文档找到它:

$.fullCalendar.formatDate( date, formatString [, options ] )

这对我有用,谢谢