我有一张带有 tr 标签的表格。我想在其类旁边并排显示两个 tr 标签。我怎么能用jquery做到这一点。
<table>
<tr class='1'>
<td>First</td>
</tr>
<tr class='1'>
<td>second</td>
</tr>
<tr class='2'>
<td>third</td>
</tr>
<tr class='3'>
<td>fourth</td>
</tr>
<tr class='3'>
<td>fifth</td>
</tr>
</table>
然后在我想显示的输出中
First Second
Third
Fourth Fifth
我想动态设置这些我如何使用 jquery 或 javascript 来做到这一点。我想使用为 tr 标签声明的类。我知道要为此使用<td>
标签。任何帮助表示赞赏