(转)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)(转)