0

我想删除最后一行。

我在 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>
4

1 回答 1

0

未经测试,但这应该可以工作。

$('#MURWorksheetPage2 div table :last').remove();
于 2013-08-23T14:55:44.663 回答