在JQuery中交换行

前端之家收集整理的这篇文章主要介绍了在JQuery中交换行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我有一个如下所示的表,并且有一个向上和向下移动行的箭头,我将如何在JQuery中交换行?
<tr id="Row1">
  <td>Some label</td>
  <td>Some complex control</td>
</tr>
<tr id="Row2">
  <td>Some label</td>
  <td>Some complex control</td>
</tr>
<tr id="Row3">
  <td>Some label</td>
  <td>Some complex control</td>
</tr>

解决方法

$("#Row1").after($("#Row2"));

将工作

原文链接:https://www.f2er.com/jquery/181658.html

猜你在找的jQuery相关文章