我是jquery的新手。 我使用完整的日历来显示一个月的事件。 但是,我无法在日历上方显示当前日期,如各种示例所示。
以下是我的代码:
$(document).ready(function () {
$('#calendar').fullCalendar({
defaultView: 'month',
editable: false,
eventSources: [
{
url: '/Admin/AjaxRequest/CalendarDate/',
type: 'POST',
data: {
start: '0',
end: '0',
id:id
},
},
]
});
});
答案 0 :(得分:1)
Titleformat和Header文档包含您需要的所有答案。
设置一个标题,您可以在其中指定标题的位置,然后在titleformat中指定您希望如何显示此标题。
即使评论中的@Xaerxess点有效,也能回答这个问题。