如果我有一个如下所示的表,并且有一个向上和向下移动行的箭头,我将如何在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"));
将工作