日历事件未首次加载

时间:2013-04-16 07:30:57

标签: javascript jquery ajax json fullcalendar

我有一个选择列表框,其中3个选项值和最后一个选项值为Calendar,而我将点击日历事件未加载第一次...

我的完整日历+活动代码。

<script type='text/javascript' src='js/fullcalendar.min.js'></script>
<script>
    $(document).ready(function() { 
         $('#calendar').fullCalendar({ 
             events: "json-events.php",
             loading: function(bool) { 
                if (bool) { 
                     $('#loading').show();
                }
                else {
                     $('#loading').hide();
                }
             },
          });
     });
  </script>

1 个答案:

答案 0 :(得分:1)

我有类似的问题: 所以我重新呈现了日历:

if (bool) {
   $('#loading').show();
    setTimeout(function(){
            $('#calendar').fullCalendar('render');
        },1);

   }

希望这也适用于您的设置。