gpt4 book ai didi

jquery - Fullcalendar-如何划掉并显示已完成的任务

转载 作者:行者123 更新时间:2023-12-01 01:52:09 24 4
gpt4 key购买 nike

使用 Fullcalendar 插件,有没有办法删除已完成的任务(至少使用 <strike> 标签)。我正在从数据库中取出任务,并将结果传递到 json_encode() .

最佳答案

如果您使用的是 v5,请将其添加到构造函数中:

eventClassNames: function(arg) 
{
//standard event properties are under the "event" object
//and any other property/value you've added to the event
//object will be available under "event.extendedProps",
//just like this 'isUrgent' in the sample bellow:

if (arg.event.extendedProps.isUrgent)
{
return [ 'urgent' ]
}
else
{
return [ 'normal' ]
}
}

<style type="text/css">
.normal
{
text-decoration: none;
}
.urgent
{
text-decoration: line-through;
}
</style>

关于jquery - Fullcalendar-如何划掉并显示已完成的任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7139531/

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