我正在同步 fullcalendar 和 google 日历,我注意到在周视图中,周日 0:00 到 12:00 的事件丢失了,但仅限于那一天。如果我切换到日视图,它会发生在每一天。
你可以在这里看到错误:http ://www.kittikun.jp/schedule2.html
这是页面的来源:
<script>
$(document).ready(function() {
$('#calendar').fullCalendar({
events: { url:"http://www.google.com/calendar/feeds/contact%40kittikun.jp/public/basic" },
theme: true,
header: {
left: 'today prev,next',
center: '',
right: 'month,agendaWeek,agendaDay'
},
allDaySlot: false,
timeFormat: "H:mm",
aspectRatio: 1,
lazyFetching: false,
firsthour: 0,
buttonIcons: {prev: 'circle-triangle-w'},
eventClick: function(calEvent, jsEvent, view) {
if (calEvent.description) {
var $dialog = $('<div></div>')
.html(calEvent.description)
.dialog({
title: calEvent.location,
modal: true,
width: 500
});
$dialog.dialog('open');
}
return false;
}
});
});
</script>
在这个论坛上搜索后,我发现了这个主题:
JQuery:FullCalendar 插件:事件不显示在周视图和日视图中,但显示在月视图中
但解决方案没有奏效
感谢您阅读本文