2013-10-03 74 views
0

刪除表格標題和正文單元格我正在處理一個項目,該表格必須動態添加列並在用戶感覺列未被使用時將其刪除。使用eq

我的問題是當我刪除列標題時,tbody中只有一個td被刪除。這裏是我的代碼,我用:

$("#tbl thead th:eq("+index+")").remove(); 
$("#tbl tbody > td:eq("+index+")").remove(); 

回答

2

嘗試

$("#tbl thead th:eq("+index+")").remove(); 
$("#tbl tbody tr").find("td:eq("+index+")").remove(); 

演示:Fiddle

$("#tbl tr td,th").filter(':nth-child(' + (index + 1) + ')').remove(); 

演示:Fiddle

+0

感謝阿倫。它正在工作。 –