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/ 0 讨论(0) 查看其它5个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
$('#sourceT tr') .clone() .find('td:gt(1)') .remove() .end() .appendTo('#targetT');
http://jsfiddle.net/C7dKF/