我想创建css,根据它的条件应该用不同的颜色标记行
前:
if row.Stage='new' (fill in green)
if row.Stage='complete' (fill in blue)
(row.stage is get the data from db)
请任何人都可以帮我纠正这个问题
答案 0 :(得分:0)
创建您想要的类,例如:
.new { background-color: green; }
.complete { background-color: blue; }
在服务器端代码中,当您为行创建html时,请检查阶段值 - 并将相应的CSS类添加到该行。
所以Stage as New的行将为
<tr class="new"> ... </tr>