<table>
<tr>
<td>Row 1 Column1</td>
<td>Row 1 Column2</td>
</tr>
<tr class="dynamicRows">
<td>Row 2 Column1</td>
<td>Row 2 Column2</td>
</tr>
<tr class="dynamicRows">
<td>Row 3 Column1</td>
<td>Row 3 Column2</td>
</tr>
<tr>
<td>Row 5 Column1</td>
<td>Row 5 Column2</td>
</tr>
</table>
这是表结构。我想在行下方插入
<tr class="dynamicRows">
<td>Row 4 Column1</td>
<td>Row 4 Column2</td>
</tr>
在第三行之后,我想在类的末尾通过 Jquery 插入新的行元素"dynamicRows"
。请帮我解决这个问题。
这段代码运行良好。
$('table tr.categories:last').after(returnData);