我正在尝试将一行附加到 asp 数据网格的 html 格式。我的网格有分页,它也被转换为 html 格式的一行。因此,我在具有实际记录的行中添加了一个类。现在,我需要将一个 html 表格行附加到网格中。这应该附在记录的末尾。有人知道怎么做吗?
表结构:
<table>
<th>
</th>
<tbody>
<tr class="clientData">1</tr>
<tr class="clientData">2</tr>
<tr class="clientData">3</tr>
<tr>Exclude This Row</tr>
<tr>Exclude This Row</tr>
</tbody>
</table>
脚本:
{ $("#ctl00_Content_GrdCustomer tbody").append(selCustomersRow); } //