我使用FullCalendar jquery,我想将德国假期和一些类似的事件添加到日历中:
$(document).ready(function() {
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();
$('#calendar').fullCalendar({
editable: false,
events: [
{
url: 'http://www.google.com/calendar/feeds/german%40holiday.calendar.google.com/public/basic',
color: 'yellow', // an option!
textColor: 'black' // an option!
},
{
start: '2013-06-26',
title: 'Mitrache Florin' , color: 'green', url: 'calendar.php?nume=Mitrache Florin', desc: 'test',
description:'' }, {
start: '2013-06-27',
title: 'Mitrache Florin' , color: 'green', url: 'calendar.php?nume=Mitrache Florin', desc: 'test',
description:'' },
]
});
});
但没有显示德国的假日。jsfiddlehttp://jsfiddle.net/DKvCR/
解决方案:FullCalendar Jquery
尝试
$(document).ready(function() {
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();
$(document).ready(function() {
$('#calendar').fullCalendar({
eventSources:[{
url: 'http://www.google.com/calendar/feeds/german%40holiday.calendar.google.com/public/basic',
color : 'grey', // an option!
textColor : 'black' // an option!
}, {
events : [{
start : '2013-06-26',
title : 'Mitrache Florin',
color : 'green',
url : 'calendar.php?nume=Mitrache Florin',
desc : 'test',
description : ''
}, {
start : '2013-06-27',
title : 'Mitrache Florin',
color : 'green',
url : 'calendar.php?nume=Mitrache Florin',
desc : 'test',
description : ''
}]
}]
});
});
});
演示:Fiddle