How to clone two columns in a table using jQuery

后端 未结 5 1533
执笔经年
执笔经年 2021-01-18 15:44

I am trying to clone 2 columns from a table to a new table using jQuery. The source table is below:



        
      
      
      
5条回答
  •  再見小時候
    2021-01-18 16:28

    $('#sourceT tr')
            .clone()
            .find('td:gt(1)')
            .remove()
            .end()
            .appendTo('#targetT');
    

    http://jsfiddle.net/C7dKF/

提交回复
热议问题