假设我的表中有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行?
答案 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);