我会重新开始。我有一张从远程服务器拉出的桌子。该表有白色奇数行和灰色偶数行。我隐藏了一些行:
$("td").filter(function(){ return $(this).text()=='R1';}).text('Row1'); //white
$("td").filter(function(){ return $(this).text()=='R2';}).text('Row2'); //grey
$('tr:nth-child(3)').hide(); //white
$("td").filter(function(){ return $(this).text()=='R4';}).text('Row4'); //grey
$('tr:nth-child(5)').hide(); //white
$("td").filter(function(){ return $(this).text()=='R6';}).text('Row6'); //grey
$("td").filter(function(){ return $(this).text()=='R7';}).text('Row7'); //white
现在我的表格行不再交替,而是白色,灰色,灰色,灰色,白色。我如何让它们再次交替?创建一个像这样的类:$("tr").filter(":even").addClass("even");
+ csstr.even td{background-color: blue;}
使它成为白色,蓝色,蓝色,蓝色,白色,所以它仍然不会交替。
我可以做到这一点$('tr:nth-child(4)').each(function(i){ $(this).find('td').css('background-color', 'white');});
,它适用于白色、灰色、白色、灰色、白色。但是有一个问题!第 4 行有我想保持红色的红色单元格。上面的代码将红色单元格覆盖为白色。
来自服务器的样式是:
<script src="remoteserver/sorttable.js"></script>
<style type = "text/css">';
td.datacellone{
background-color: #C0C0C0;
}
th.datacellheader{
background-color: #6A5ACD;
}
td.alert{
background-color: #FF0000;
}
td.orange{
background-color: #FFA500;
}
td.green{
background-color: #008000;
}
</style>
我希望这个红色警报颜色保持红色,而行交替为白色和灰色。