我想实现以下目标,我需要从id为#emailTable的表中删除一个表行,然后将完全相同的行追加到表的末尾,然后使用 JQuery隐藏附加的表行. 要删除表,我执行以下操作 $("#rowid_"+id).remove(); var a;a
要删除表,我执行以下操作
$("#rowid_"+id).remove();
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
我希望它有效:)