我想提供从外部网站到我网站的FullCalendar日历页面的链接,但我希望日历可以打开特定的月份和年份。
我设想了一个类似于:
的网址http://mywebsite/calendarpage?month=5&year=2016
这可能吗?
答案 0 :(得分:4)
首先,您应该从URL获取参数。这可能取决于您网站的结构。
例如,您可以使用this method if you are using JQUERY。获得参数后,需要将数据发送到fullcalendar。
现在您有两个选项,如果您已加载日历,则可以使用gotoDate
移至特定日期var ricksDate = new Date(2016, 5, 1);
$('#calendar').fullCalendar( 'gotoDate', ricksDate);
...或者如果需要初始化fullcalendar,请将默认日期设置为您的特定日期。您需要在加载日历时添加特定行:
$('#calendar').fullCalendar({
defaultDate: ricksDate;
})