- 先注意表格不要引类似分行变色的css,如table-striped
- View下方式
- foreach下方式
@foreach (var item in Model)
{ <tr style="background-color:@{if (item.ReceQuantity>=item.BuyQuaity ){<text>lightgreen</text>}};">
- jquery方式
$("#grd").find("tr").each(function () {
var v1 = parseFloat($(this).children(‘td:eq(8)‘).text()); //取行第8列值
var v2 = parseFloat($(this).children(‘td:eq(9)‘).text());
if (v1 == v2) {
$(this).css({ "color": "darkgreen", "font-weight": "bold" }); //多CSS方式
} else {
$(this).css("color", "dark");
}
});
时间: 2024-11-03 20:51:02