我使用以下代码显示每个事件的工具提示:
eventAfterRender: function (event, element) {
element.popover({
animation: false,
container: '#calendar',
content: 'The selected booking starts at ' + event.start + ' and ends at ' + event.end,
placement: 'auto',
title: event.title
});
},
但该消息最终以结束
所选预订开始于1404345600000,结束于1404345600000.
如何使此消息中的格式为DD-MM-YY
?
编辑:有一个函数parseDate
可用。将其包裹在event.start
周围的正确方式是什么?
一旦有了日期,就会有一个名为formatDate的函数将日期作为第一个参数,然后是表示输出预期模式。
这是一个文档页面,它为您提供了所有的模式及其等效。
http://arshaw.com/fullcalendar/docs1/utilities/formatDate/
希望它能有所帮助!