1

在 FullCalendar 插件中可以定义标题,在哪里可以看到从……到……的日期(显示事件 23.04.2013 - 25.04.2013)。这可以通过以下方式完成:

header: {
    left: 'prev,next today',
    center: 'title',
    right: 'year,month,agendaWeek,agendaDay'
}

有没有办法提取title用于其他元素?我需要在#calender容器外显示此标题内容。

谢谢!

4

1 回答 1

0

你可以用 jquery

var title = $(".fc-header-title h2").html();
于 2013-04-23T08:50:39.310 回答