我一直在寻找解决这个问题的方法,但我没有找到类似于我想要的东西。
我有一个表填充了数据库中的数据,我想根据我在每一行加载的类来更改特定行的背景颜色。
我必须显示一些数据但由于要显示的字段非常多,我没有更多空间来显示状态字段,所以如果状态为非活动状态,我想将该行显示为红色,以及蓝色样式表的正常颜色中的其余行。
有没有办法通过tablesorter来做到这一点?我愿意接受建议,因为我不确定我该怎么做。
提前谢谢大家,
维克多
答案 0 :(得分:1)
<style>
table.even, tr.active td
{
background-color:#00F; //BLUE IF ACTIVE
height:40px;
}
table.even, tr.inactive td
{
background-color: #F00;//RED IF INACTIVE
height:40px;
}
</style>
<table>
<tr class= (put condition which returns true if active otherwise false)? "active" : "inactive">
</tr>
<table>