我不知道如何在全日历4事件中显示更多详细信息。在这篇文章之后:
[fullcalendar]Have listMonth display more details than month
我尝试了以下代码,但没有成功:
eventRender: function( info ) {
if (info.view.type == "timeGridWeek")
{
info.el.find('.fc-title').html('something');
}
},
但是我遇到错误:无法解析JSON。你有什么想法,我在做什么错?谢谢。
编辑: 我发现可以使用以下代码获得具有类名称fc-title的div:
eventRender: function(info) {
console.log(info.el.getElementsByClassName("fc-title"));
},
但无法找到如何在其中附加div或span或其他任何元素。
答案 0 :(得分:0)
最后我想通了:
mobx-react-lite
这会将div添加到具有className'.fc-title'的元素。