更改fullcalendar显示的高度?

时间:2010-11-16 02:29:54

标签: jquery fullcalendar

如何更改主fullcalendar的高度并让其他所有内容都适合该日历?

1 个答案:

答案 0 :(得分:1)

您可以在日历初始化时设置它,也可以使用setter动态修改它。

来自documentation

$('#calendar').fullCalendar({
    height: 650
});

或者使用setter:

$('#calendar').fullCalendar('option', 'height', 700);