我已经为我的一个项目定制了一点 FullCalendar 插件,它看起来像本月视图。如您所见,空日期的高度与date's with the Events
. 我想要的是without any event day should be small.
我现在使用纵横比设置天数的高度。请指导我。谢谢你的欢呼...
问问题
710 次
1 回答
1
这是对我有用的答案,特别感谢@Adyson 的帮助和建议。
var calHeight = function() {
$('#calendar').find('.fc-row').each(function() {
var ogHeigth = '';
if ($(this).find('.fc-event-container').length > '0') {
ogHeigth = $(this).outerHeight();
}
if ($(this).find('.fc-event-container').length == '0') {
$(this).css('height', ogHeigth - ogHeigth / 3);
}
});
}
我将此功能放在完整日历中的所有功能中,以便在添加、更新或删除事件、更改日期等时运行。它对我有用,希望这对你们有所帮助。泰
于 2017-06-27T11:53:20.507 回答