gpt4 book ai didi

javascript - 全历高度问题

转载 作者:行者123 更新时间:2023-12-02 19:55:07 25 4
gpt4 key购买 nike

我已将 Fullcalendar 集成到我网站的主页上。代码是...

<script type='text/javascript'>

$(document).ready(function() {
$('#calendar').fullCalendar({
events: {
url: 'https://www.google.com/calendar/feeds/XXXXXXXXimport.calendar.google.com/public/basic',
className: 'gcal-event', // an option!
currentTimezone: 'Europe/London' // an option!
},

eventMouseover: function(event, jsEvent, view) {
if (view.name !== 'agendaDay') {
$(jsEvent.target).attr('title', event.title);
}
}
});
});

</script>

如何调整日历内容的整体高度?我看过这个链接...

http://arshaw.com/fullcalendar/docs/display/height/

...并尝试遵循指南,但我一定写错了代码,因为它对我不起作用。我想将高度限制为 180px。

非常感谢任何帮助。

最佳答案

我以前没有使用过 fullCalendar,但根据您粘贴的链接,这应该可行。

$('#calendar').fullCalendar({
events: {...},
eventMouseover: function(event, jsEvent, view) {...},
height: 180
});

只需确保这是您第一次调用 fullCalendar 函数。否则,您需要使用: $('#calendar').fullCalendar('option', 'height', 180);

可能不太可能,但要记住的另一件事是你的CSS,确保它没有覆盖#calendar的高度,注意!重要

关于javascript - 全历高度问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8767496/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com