我的表是我页面中的第二个表,我正在进行复制该表的第二个tr(因为第一个tr在thead中,另一个在tbody中)并将副本插入到同一个表中如何第一个tr 。 THX
firsttbodytr = $('form table:not(:first) tr:eq(2)').clone();
$('#crearb').click(function(){
$('form table:last tbody').append(firsttbodytr);
});
答案 0 :(得分:0)
您可以使用.prepend()。使用您自己的代码的最小示例:
firsttbodytr = $('table:last tbody tr:first').clone();
$('button').click(function(){
$('table:last tbody').prepend(firsttbodytr);
});