我正在使用JQuery FullCalendar库,并且有一个函数可以有条件地绘制日历的某些行。我的功能在Internet Explorer中工作正常,但是当我使用Google Chrome浏览器时,该行的颜色没有更改。我使用了'style.backgroundColor =“#FFFFFF;”'而不是'.css('background-color','#FFFFFF;')',但是什么也没有发生。设置组件背景颜色以在Google Chrome浏览器中正确显示的最佳方法是什么?下面是我的代码。我将HTML实体用于'&&','>','
if(timeSlot >= str && timeSlot < obj.horaTermino) //Change 13 and 18 according to what you need
{
$(this).closest('tr').css('background-color', '#FFFFFF;');
//$(this).closest('tr').style.backgroundColor="#FFFFFF;";
}
最佳答案
从十六进制颜色值中删除分号,以便:
$(this).closest('tr').css('background-color', '#FFFFFF');