如何使用任何文本编辑器从巨大的html表中删除列

时间:2014-09-17 07:44:46

标签: html html-table text-editor tablecolumn

我有一个html表,其中包含25,000行和8列我要从表中删除第1,第2,第7和第8列,我可以使用一些设计工具,如MS Visual Web开发人员和Dreamweaver,但它需要太多我需要一些文本编辑器,我可以获得相同的功能来提高性能。

1 个答案:

答案 0 :(得分:0)

您可以在javascript上编写简单的代码。

var table = document.getElementById("mytab");
for (var i = 0, row; row = table.rows[i]; i++) {
   //iterate through rows
   //rows would be accessed using the "row" variable assigned in the for loop
   for (var j = 0, col; col = row.cells[j]; j++) {
     if(j == 0 || j == 1 || j == 6 || j == 7) {
        row.removeChild(col)
     }
   }  
}

这里是Fiddle link