我想删除最后一行。
我在 div 中潜水,它有表格和许多行。
我想删除表的最后一行。我无法迭代到最后一个 tr。
<div class="span15" id="MURWorksheetPage2">
<div class="span8">
<table>
<tr>
<td class="col1">
@Html.DisplayNameFor(model => model.MedicineUseNo) @Html.TextBoxFor(model => model.MedicineUseNo, new { id = "txtMedicineUseNo", style = "Width:20px" })
</td>
<td class="col2">@Html.DisplayNameFor(model => model.MedicinePrescribed) @Html.TextBoxFor(model => model.MedicinePrescribed, new { id = "txtMedicinePrescribed" })</td>
</tr>
<tr>
<td class="col1" colspan="2">
@Html.DisplayNameFor(model => model.OTC) @Html.TextBoxFor(model => model.OTC, new { id = "txtOTC" })
</td>
</tr>
</table>
</div>
</div>