(转)jquery合并单元格

Posted viokingjava

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(转)jquery合并单元格相关的知识,希望对你有一定的参考价值。

文章原文:https://blog.csdn.net/qq422431474/article/details/53318374

//合并单元格
    jQuery.fn.rowspan = function (colIdx) {
        return this.each(function () {
            var that, rowspan;
            $(‘tr‘, this).each(function () {
                $(‘td:eq(‘ + colIdx + ‘)‘, this).filter(‘:visible‘).each(function () {
                    console.log(1)
                    if (that != null && $(this).html() == $(that).html()) {
                        rowspan = $(that).attr("rowspan");
                        if (rowspan == undefined) {
                            $(that).attr("rowspan", 1);
                            rowspan = $(that).attr("rowspan");
                        }
                        rowspan = Number(rowspan) + 1;
                        $(that).attr("rowspan", rowspan);
                        $(this).hide();
                    } else {
                        that = this;
                    }
                });
            });
        });
    }

 

以上是关于(转)jquery合并单元格的主要内容,如果未能解决你的问题,请参考以下文章

Java poi导入excel(合并单元格的excel)(转)

JQuery EasyUI DataGrid动态合并单元格

js+html:table td合并单元格后,动态新增一行,能保持td合并的状态吗?js(jquery)代码该如何写?

vue table 合并单元格 合计 字符串转数值

为啥考核表用word不用excel

js/jquery 合并相同单元格