码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript 表格指定列,根据相同值跨行

时间:2015-12-23 22:51:27      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:

function mergeTableRows(tableName,colIdx){

    tableObj=document.getElementById(tableName);
    var lastTdText=null;
    var rowLen=tableObj.rows.length;
    for(var i=rowLen-1;i>=1;i--){
        var currText=tableObj.rows[i].cells[colIdx].innerHTML;
        if(lastTdText==null){
            sameCount=1;
        }else if(lastTdText!=currText){
            if(sameCount>1){
                tableObj.rows[i+1].cells[colIdx].rowSpan=sameCount;
            }

            sameCount=1;
        }else if(lastTdText==currText){
            tableObj.rows[i+1].deleteCell(colIdx);
            sameCount++;
        }

        lastTdText=currText;
    }

    if(sameCount>1){
        tableObj.rows[1].cells[colIdx].rowSpan=sameCount;
    }

    //强制表格重新绘制
    var borderWidth=tableObj.border;
    tableObj.border=1;
    tableObj.border=borderWidth;
}

 

JavaScript 表格指定列,根据相同值跨行

标签:

原文地址:http://www.cnblogs.com/huanzei/p/5071416.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!