我想在FullCalendar 3.0.1中动态显示事件



以下是我的代码。我不知道为什么日历可以工作,但没有显示事件。我非常感谢您的帮助。

var eventSTR = [{start: '2016-11-21',end: '2016-11-23',overlap: false,rendering : 'background', color: '#ff9f89'},];
$(document).ready(function() {
    $('#calendar').fullCalendar({
            header: {
                left: 'prev,next',
                center: 'title',
                right: 'month',
            },
            defaultDate: today,
            navLinks: false, // can click day/week names to navigate views
            businessHours: true, // display business hours
            editable: false,
            event : eventSTR
            });
        });

您在那里99%,只是缺少2件事

1)您需要在设置文档就绪功能之前设置今天的变量:

var today = new Date();

2)您已经拼错了事件属性。您有:

event : eventSTR

它应该阅读:

events : eventSTR 

相关内容

  • 没有找到相关文章

最新更新