如何在jQuery插件fullCalendar中使用多个源?

前端之家收集整理的这篇文章主要介绍了如何在jQuery插件fullCalendar中使用多个源?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个功能齐全的fullCalendar http://arshaw.com/fullcalendar/工作从Google日历中检索单个来源,用于这样的事件:
$('#calendar').fullCalendar({

   events: $.fullCalendar.gcalFeed(
      "http://www.google.com/calendar/Feeds/etc",// Feed URL
      { className: 'gcal-events' }                  // optional options
   )

     });

然而,我的挑战是有多个Feed.fullCalendar文档说:

eventSources:Array
与“事件”选项类似,但可以指定多个源.例如,可以指定JSON URL的数组,自定义函数的数组,硬编码事件数组的数组或任何组合.

但是没有例子,所以这里的JSON新手有点卡住了.

关于使用eventSources和Feed数组需要什么的任何想法?

解决方法

找到解决方案;
http://code.google.com/p/fullcalendar/issues/detail?id=192&q=eventSources
eventSources:
[
    'msCal.txt',// location of Cal JSON script
    'msLogBook.txt',// location of LogBook JSON object
    'msEvents.txt' //location of the Events JSON object
]

回想起来非常简单.以下是我的测试页面;

eventSources:
[
    $.fullCalendar.gcalFeed('http://www.google.com/calendar/Feeds/en.australian%23holiday%40group.v.calendar.google.com/public/basic'),$.fullCalendar.gcalFeed('http://www.google.com/calendar/Feeds/usa__en%40holiday.calendar.google.com/public/basic'),$.fullCalendar.gcalFeed('http://www.google.com/calendar/Feeds/en.indonesian%23holiday%40group.v.calendar.google.com/public/basic')
],
原文链接:https://www.f2er.com/jquery/181541.html

猜你在找的jQuery相关文章