我有以下JS函数:
function addTopLinks() {
$('#calendar .fc-view-resourceNextWeeks thead th .fc-resourceName')
.addClass('top-cell');
};
它没有添加类。
我还有一个:
function addDayClass() {
$('#calendar .fc-view-resourceNextWeeks thead th')
.filter(function () {
if ($(this).text().indexOf('Mon ') == 0) return true;
return false;
})
.addClass('monday');
};
那个工作得很好。
这是层次结构:
我真的不确定为什么第一个有效,而不是这个...
谢谢