HTML in title string of fullcalendar jquery plugin

前端 未结 6 1924
离开以前
离开以前 2021-01-31 08:18

I think the fullcalendar jquery-plugin is a really great solution. However, I noticed the plugin escapes (htmlEscape) the title. But I need to format some strings in the title,

6条回答
  •  温柔的废话
    2021-01-31 08:48

            eventRender: function (event, element) {
                element.find('.fc-title, .fc-list-item-title').html(""+event.title+"");
            },
    

提交回复
热议问题