我尝试使用三色行的jquery数据表,这些行重复交替。但是我只重复了两个彩色行。
Tried jquery datatable with tri colored rows
我正在使用属性偶数/奇数来着色
$(document).ready(function() {
$('#example').dataTable();
} );
$(document).ready(function() {
$("#example tr:even").css("background-color", "LightYellow");
$("#example tr:odd").css("background-color", "LightBlue");
});
答案 0 :(得分:6)
您不必使用jquery来实现此CSS非常适合该作业。试试这个。
/*tri color rows*/
table.dataTable tbody tr:nth-child(3n+1) {background-color: #FFCCCC;}
table.dataTable tbody tr:nth-child(3n+2) {background-color: #99D6AD;}
table.dataTable tbody tr:nth-child(3n) {background-color: #EBD6FF;}
th {
background: #aaf;
}
thead{
background: #aaf;
}
/* End: tri color rows*/