我有几个json提要,我想在日历上显示。
看看这些文档,似乎确实有一些解释,但没有超过1个json提要的例子。
我有以下内容:
var source = Array();
source[0] = '/feed1.php';
source[1] = '/feed2.php';
eventSources: [
source[0],
source[1]
]
这显示事件很好,我可以在我的日历上看到它们
但我该如何从颜色上区分它们呢?
感谢
您可以使用事件源的扩展形式为每个源提供自己的颜色。在下面的代码中,"color"是事件背景色,"textColor"是事件文本的颜色。
$('#calendar').fullCalendar({
header: {
left: 'prev,next',
center: 'title',
right: 'today'
},
eventSources: [
{
url: '/feed1.php',
color: 'yellow',
textColor: 'black'
},
{
url: '/feed2.php',
color: 'blue',
textColor: 'white'
}
]
});
下面是一个使用此方法的JSFiddle:http://jsfiddle.net/emcw5/4/.