在使用调度程序的资源视图时,用户发现很难理解悬停时间。
在$('#calendar')下面添加这个.fullCalendar(...);
$(".fc-slats tr").each(function () {
$(this).addClass("timerow");
});
和CSS
.timerow:hover {background: lightblue;}
问题:当用户按下一个或上一个按钮时,日历再次呈现该表,而.hover不起作用。