我想实现以下目标,我需要从id为#emailTable
的表中删除一个表行,然后将完全相同的行追加到表的末尾,然后使用 JQuery的
要删除表格,请执行以下操作
$("#rowid_"+id).remove();
答案 0 :(得分:8)
答案 1 :(得分:3)
var a;
a = $("#rowid_"+id).html(); // store the content on a
$("#rowid_"+id).remove(); // remove the node
$('table').append(a);// append the content on table
$("#rowid_"+id).hide();//hide the appended node
我希望它有效:)
答案 2 :(得分:1)
这是一个适用于包含多个表的页面的版本。
$("#tr_Row_" + id).appendTo($("#tr_Row_" + id).closest("table"));
说明:第二部分
$("#tr_Row_" + id).closest("table") // get the parent-table of the row.
说明:第一部分
$("#tr_Row_" + id).appendTo(...parentTable...) // remove row from the current table
// and append it as last child to the
// parentTable