我有一个选择列表框,有 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>