使用jquery和selectors

时间:2015-06-18 19:20:51

标签: jquery

我的表是我页面中的第二个表,我正在进行复制该表的第二个tr(因为第一个tr在thead中,另一个在tbody中)并将副本插入到同一个表中如何第一个tr 。 THX

firsttbodytr = $('form table:not(:first) tr:eq(2)').clone();

$('#crearb').click(function(){

    $('form table:last tbody').append(firsttbodytr);

});

1 个答案:

答案 0 :(得分:0)

您可以使用.prepend()。使用您自己的代码的最小示例:

firsttbodytr = $('table:last tbody tr:first').clone();

$('button').click(function(){

    $('table:last tbody').prepend(firsttbodytr);

});

FIDDLE:https://jsfiddle.net/lmgonzalves/b5qk7evv/2/