我有一个选择列表框,其中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>
答案 0 :(得分:1)
if (bool) {
$('#loading').show();
setTimeout(function(){
$('#calendar').fullCalendar('render');
},1);
}
希望这也适用于您的设置。