我有一个表格,我想在其中获取除第一行之外的所有行的 HTML。
<table id="files-table">
<tbody>
<tr>
<th class="text-left">Name</th>
<th>Type</th>
<th class="delete-th">Delete</th>
</tr>
<tr>
<td class="text-left"><label class="label-none">a.docx</label></td>
<td><label class="label-none">Manuscript</label></td>
<td><input type="checkbox" class="del-cb"></td>
</tr>
<tr>
<td class="text-left"><label class="label-none">test2.doc</label></td>
<td><label class="label-none">Manuscript</label></td>
<td><input type="checkbox" class="del-cb"></td>
</tr>
</tbody>
</table>
当我使用
$('#files-table> tbody > tr').not(':first').html()
我只得到第二行的 HTML,第三行的 HTML 在哪里?