FullCalendar标题标题未显示

时间:2017-08-17 20:34:58

标签: javascript html css fullcalendar

当我第一次在这个项目上实现FullCalendar时,它工作得很完美,但现在标题标题已经消失了。

当我检查页面时,我可以看到标题显示在日历的中心。但是,不知怎的,它没有显示出来。

这是我的javascript代码:

 $('#calendar').fullCalendar({
      header: {
        left: 'prev,next today',
        center: 'title',
        right: 'month,listWeek,'
      },
      height: "auto",
      editable: true,
      navLinks: true,
      eventLimit: true,
      events: {
        url: 'http://localhost:8000/calendar/calendar-php/get-events.php',
        error: function() {
          $('#script-warning').show();
        }
      },
      loading: function(bool) {
        $('#loading').toggle(bool);
      },
    }); 

This is how my calendar looks like

html生成的代码是这样的:

<div class="fc-center">
<h2>Agosto 2017</h2>
</div>

我甚至尝试过设置CSS样式以使其可见,但它没有用。

0 个答案:

没有答案