Javascript合并表格相同内容单元格示例

效果图:

Javascript合并表格相同内容单元格示例_第1张图片

HTML代码:





表格相同内容合并

 

合并前:
a 1 2 3 4 5
a 1 2 3 4 6
a 2 3 3 4  
b 3 4 6 7  
b 3 5 6 7  
cc 2 3 4 5  
cc 2 3 5 5  
d 1 2 3 4  
e 1 2 3 4  

合并后:
a 1 2 3 4 5
a 1 2 3 4 6
a 2 3 3 4  
b 3 4 6 7  
b 3 5 6 7  
cc 2 3 4 5  
cc 2 3 5 5  
d 1 2 3 4  
e 1 2 3 4  


 

JS:

///合并表格相同行的内容
///table:表格或者表格ID(最好是tbody,避免把表尾给合并了)
///startRow:起始行,没有标题就从0开始
///endRow:终止行,此参数是递归时检查的范围,一开始时会自动赋值为最后一行
///col:当前处理的列
///endCol:终止列
///isInit:是否初始调用,如果是则在终止行为0时自动取最后一行
function MergeCell(table, startRow, endRow, col, endCol, isInit) {
    if (typeof (table) == 'string')
        table = document.getElementById(table);
    if (col >= table.rows[0].cells.length || col > endCol) {
        return;
    }
    if (isInit == undefined) isInit = true;
    //当检查第0列时检查所有行
    if ((col == 0 || endRow == 0) && isInit) {
        endRow = table.rows.length - 1;
    }
    for (var i = startRow; i < endRow; i++) {
        //程序是自左向右合并
        if (table.rows[startRow].cells[col].innerHTML == table.rows[i + 1].cells[col].innerHTML) {
            //如果相同则隐藏下一行的同列单元格
            table.rows[i + 1].cells[col].style.display = 'none';
            //更新rowSpan属性
            table.rows[startRow].cells[col].rowSpan = (table.rows[startRow].cells[col].rowSpan | 0) + 1;
            //当循环到终止行前一行并且起始行和终止行不相同时递归(因为上面的代码已经检查了i+1行,所以此处只到endRow-1)
            if (i == endRow - 1 && startRow != endRow) {
                MergeCell(table, startRow, endRow, col + 1, endCol, false);
            }
        } else {
            //起始行,终止行不变,检查下一列
            MergeCell(table, startRow, i, col + 1, endCol, false);
            //增加起始行
            startRow = i + 1;
        }
    }
}

 

 

你可能感兴趣的:(Javascript资料)