私の foreach コード
2 行目の背景色が異なることに注意してください。
@foreach (var item in Model.fNameList)
{
<tr>
<td style ="background-color:#E0EBEB; height:40px;width:100px;"><a href ="#" onclick='call();' style ="text-decoration:none; text-decoration-color:black;"> T-00001</a></td>
<td style ="background-color:#E0EBEB; height:40px;width:200px;"> @item.firstName</td>
</tr>
<tr>
<td style ="background-color:#fff; height:40px;width:100px;"><a href ="#" onclick="call();" style ="text-decoration:none; text-decoration-color:black;"> T-00001</a></td>
<td style ="background-color:#fff; height:40px;width:200px;"> @item.firstName</td>
</tr>
}
たとえば、var item[0]が" FIRSTNAME " = "GEM"で、var item[1]が" FIRSTNAME " = "DIAMOND"の場合。コードを実行すると、最初のTRタグの値は "FIRSTNAME " = "GEM"になり、2 番目のTRタグの値も"FIRSTNAME" = "GEM"になります。次に、2 番目のTRタグに"FIRSTNAME" = "DIAMOND"という値を設定します。