我的网站是用于列出戏剧作品
我想使用下拉列表让用户按位置或流派过滤列表。
以下代码刷新屏幕:
$("#cfilter").change(function() {
$('#calendar').fullCalendar('refetchEvents')
})
但我需要能够在下面的ajax调用中更改SRC:
$.ajax({
url: src,
dataType: 'json',
data: params,
cache: options.cacheParam || false,
success: reportEventsAndPop
})
是来自eventSources [1]
的传递参数TIA对任何可以提供帮助的人都有帮助!
答案 0 :(得分:1)
最好只使用自定义函数和执行ajax请求的自定义代码: http://arshaw.com/fullcalendar/docs/event_data/events_function/
(当然使用json,而不是像示例中的xml)