1
我有一個3列6行的表。我想將其中一些內容複製到新創建的列中,但將它們插入到中間。因此,它看起來像這樣:複製多個TDS
有了這個aprroach:
$("table td:nth-child(2) [id$=2]").each(function(i) {
var $newCell = $(this).wrap('<td></td').parent();
var $newRow = $("table td:nth-child(2) [id$=1]").eq(i).parents('tr');
$(this).parents('tr').remove();
$newRow.append($newCell);
});
$("table td:nth-child(2) [id$=3]").each(function(i) {
var $newCell = $(this).wrap('<td></td').parent();
var $newRow = $("table td:nth-child(2) [id$=1]").eq(i).parents('tr');
$(this).parents('tr').remove();
$newRow.append($newCell);
});
我得到的結果是:
所以新列應之間插入非常左列,並與Abc
列,而不是在正確的。