我想<tr>
根据模型的属性向元素添加类:
<table>
<tbody>
@foreach (var item in Model)
{
if (item.Level == 1)
{
<tr class="classA">
}
else if (item.Level == 2)
{
<tr class="classB">
}
else
{
<tr>
}
<td>...</td>
<td>...</td>
</tr>
</tbody>
</table>
我的 IDE 告诉我我的<tr>
元素没有关闭。如何使用剃刀动态添加类值?