日期设置fullCalendar

时间:2012-02-21 11:02:48

标签: jquery jquery-plugins fullcalendar

我在fullCalendar:月/日/年的事件开始时有此日期设置,例如'02 / 25/2012'。但我想要这种格式的日/月/年,我该怎么办?

我已尝试使用此表达式$.fullCalendar.formatDate( date,'dd/MM/yyyy');

但是当我以该格式插入日期时,我的日历会在错误的日期加载事件。 例如,应该在2月29日开始的活动将于2月1日加载。

为什么呢?

2 个答案:

答案 0 :(得分:1)

formatDate用于将Date转换为字符串。看起来你想反过来 - 将String解析为Date。有一个fullcalendar parseDate,但它只适用于ISO8601格式,IETF格式或UNIX时间戳。

有关转换日期格式的帮助,请参阅here

答案 1 :(得分:0)

使用此:

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

请参阅此处的规范:http://arshaw.com/fullcalendar/docs/utilities/formatDate/