使用jQuery重新排列表中的行

时间:2013-06-05 17:32:11

标签: jquery html-table

假设我的表中有3行,如下所示:

$("tr").filter(function(){ return $(this).text() == '1'; }).text('One');
$("tr").filter(function(){ return $(this).text() == '2'; }).text('Two');
$("tr").filter(function(){ return $(this).text() == '3'; }).text('Three');

如何重新排列行,以便第3行位于第1行?

1 个答案:

答案 0 :(得分:0)

one = $("tr").filter(function(){ return $(this).text() == '1'; }).text('One');
two = $("tr").filter(function(){ return $(this).text() == '2'; }).text('Two');
three = $("tr").filter(function(){ return $(this).text() == '3'; }).text('Three');
one.before(three);