在我的xml日期就像
<Action>
...
<Started>05/10/2011 15:48:10</Started>
...
<Done>05/10/2011 17:48:17</Done>
...
</Action>
和代码我写了类似
的内容$('#calendar').fullCalendar({
header: {
left: 'prev,next',
center: 'title',
right: 'month,agendaWeek'
},
editable: false,
slotMinutes: 60,
events: function(start, end, callback) {
var events = [];
var count=0;
$(ActivityXML).find('Action').each( function() {
alert(calendarFormat($(ActivityXML).find('Action').eq(count).find("Started").text()));
events.push({
title: $(ActivityXML).find('Action').eq(count).find("Type").text(),
start:$(ActivityXML).find('Action').eq(count).find("Started").text(),
end:$(ActivityXML).find('Action').eq(count).find("Done").text(),
});
count++;
});
callback(events);
}
在月视图中显示但是当更改为议程周视图时......它没有显示任何内容。
你能帮忙吗?