0
在fullcalendar.js中,我使用了這個,但在此我給出了靜態值。 我們如何發送時間內日曆上顯示的月份和年份(「」)。因此,它的工作正常使用該只每當我改變那麼一個月刷新其rdirecting我到這個頁面如何獲取日曆上顯示的月份和年份
<script>
$(document).ready(function() {
$('#calendar').fullCalendar({
height: 350,
contentHeight: 300,
aspectRatio: 2,
eventLimit: 6,
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay,listMonth'
},
defaultDate: '<?=date("Y-m-d")?>',
navLinks: false, // can click day/week names to navigate views
businessHours: false, // display business hours
editable: false,
eventLimit: true,
events: [
{
title: '',
start: '',
color: '#ff5c29',
allDay : true,
eventColor: '#000'
},
<?php }?>
<?php foreach($records as $record){ ?>
{
title: '',
start: '',
overlap: false,
color: '',
],
});
var previousDate = moment("2016-09");
$('#calendar').fullCalendar('gotoDate', previousDate);
});
</script>
請幫助顯示2016年9月。