我正在使用这个 CSS 代码:
.even{
background: #E4ECF6;
}
.odd{
background: #F3F7FB;
}
.firstrow{
background-color: #599ECF;
}
我正在使用这个 css jquery 代码:
$(document).ready(function(){
$('table tr:even').addClass('even');
$('table tr:odd').addClass('odd');
$('table tr:first').addClass('firstrow');
});
此代码在第一个表中正确运行。但是当我有两个或更多表时,此代码可以为第一个表的第一行着色。为所有表中的所有第一行着色更好的代码?