如何在日历视图和自定义标题中标记“当前时间”

| 到目前为止,我一直对FullCalendar的灵活性感到惊讶,但是以下两个要素使我陷入了困境: 有什么办法可以使当前时间在列出小时的日视图中以粗体显示,而不会造成太多黑客攻击? 有什么方法可以更改日历元素的标题,到目前为止,它仅采用占位符“变量”(已替换为月份名称或类似名称),但是我很乐意为它们指定自己的标头(可以通过将其添加到元素上方来轻松完成此操作,但是如果可以在元素内添加它,为什么不可以,对吧?)     
已邀请:
对于#1议程DAY视图,我看到此代码
<tr class=\"fc-slot22 \">
  <th class=\"fc-agenda-axis fc-widget-header\">11am</th>
  <td class=\"fc-widget-content\"><div style=\"position:relative\">&nbsp;</div></td>
</tr>
<tr class=\"fc-slot23 fc-minor\">
  <th class=\"fc-agenda-axis fc-widget-header\">&nbsp;</th>
  <td class=\"fc-widget-content\"><div style=\"position:relative\">&nbsp;</div></td>
</tr>
<tr class=\"fc-slot24 \">
   <th class=\"fc-agenda-axis fc-widget-header\">12pm</th>
   <td class=\"fc-widget-content\"><div style=\"position:relative\">&nbsp;</div></td>
</tr>
所以我们需要看一下TH:
var nowHours = new Date().getHours(); 
var hourAMPM = (nowHours>12)?(nowHours-12)+\"pm\":nowHours+\"am\";
if (nowHours===12) hourAMPM =\"12pm\";
$(\"th\").removeClass(\"nowtime\");
$(\"th\").contains(hourAMPM).addClass(\"nowtime\");
对于#1到当前日期的粗体日历更改
.fc-state-highlight {
    background: none repeat scroll 0 0 #FFFFCC;
}
.fc-state-highlight {
    background: none repeat scroll 0 0 #FFFFCC;
    font-weight: bold;
}
对于#2,您可以更改
<span class=\"fc-header-title\">
<h2>April‌·2011</h2>
</span>
创建日历后您想要的任何内容     

要回复问题请先登录注册