是否可以在td if..else条件内编辑表的类(background-color)。
@<table class='widgetContentText'>
<tr>
<th>..</th>
<th></th>
<th>..</th>
</tr>
<tr>
@If (item.QueueLength(medium) > threshold.Queuethreshold1(medium)) Then
@If (item.QueueLength(medium) > threshold.Queuethreshold2(medium)) Then
@<td class='effect' style="background-color:#FF3333" align="center">
@item.QueueLength(medium)
</td>
Else
@<td class='effect' style="background-color:#FFA500" align="center">
@item.QueueLength(medium)
</td>
End If
Else
@<td align="center">
@item.QueueLength(medium)
</td>
End If