2
如何更改主fullcalendar的高度並讓其他所有內容適合該日曆?更改fullcalendar顯示的高度?
如何更改主fullcalendar的高度並讓其他所有內容適合該日曆?更改fullcalendar顯示的高度?
您可以在日曆初始化時設置它,或者使用setter動態修改它。
$('#calendar').fullCalendar({
height: 650
});
或者使用二傳手:
$('#calendar').fullCalendar('option', 'height', 700);