gpt4 book ai didi

jquery - 仅在今天显示完整日历

转载 作者:行者123 更新时间:2023-11-28 03:07:53 25 4
gpt4 key购买 nike

我在使用全日历插件的地方查看。

这是 View 的代码:

 <div  id="calendar"  style="height: 90%; width: 100%; clear: both; display: inline-block;overflow-y:hidden ">

</div>

<script> //Calendar initialization
$(document).ready(function () {
$('#calendar').fullCalendar({
header: {
left: 'prev,next',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
defaultView: 'agendaWeek',
events:"/Calendar/GetEvents/",
firstDay: 1,
editable: true
});
});

但在另一个 View 中,我只需要显示今天的日期。就像这里的设计一样

enter image description here

如何在全日历中执行此操作?

最佳答案

您可以在单独的对象中设置日历设置,并使用函数重新创建 FC View 。

var $fc = $("#calendar");

var options = { // Create an options object
header: {
left: 'prev,next today',
center: 'title',
right: 'agendaDay,agendaWeek,month'
},
defaultView: 'agendaWeek',
events:"/Calendar/GetEvents/",
firstDay: 1,
editable: true
}

$fc.fullCalendar(options);

function recreateFC(/*arguments*/) { // This will destroy and recreate the calendar

if (/*your condition here*/) {
options.defaultView = 'agendaDay';
} else {
options.defaultView = 'agendaWeek';
}
}

关于jquery - 仅在今天显示完整日历,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45857440/

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