我目前有一個表可以是N列和N行。在界面我有一個按鈕來刪除最後一列,但我不知道如何從所有行中刪除最後的td
,我迄今爲止取得的第一行是td
,最後一行td
,但留下其他人。jQuery刪除最後一個表列
這裏是我的代碼(僅刪除最後一個標題當前):
function removeTableColumn() {
/*
removeTableColumn() - Deletes the last column (all the last TDs).
*/
$('#tableID thead tr th:last').remove(); // Deletes the last title
$('#tableID tbody tr').each(function() {
$(this).remove('td:last'); // Should delete the last td for each row, but it doesn't work
});
}
我這麼想嗎?
我不知道':last-child'選擇器,真好! –