<script type="text/javascript">
            jQuery.fn.rowspan = function(colIdx) { //封装的一个JQuery小插件
                return this.each(function() {
                    var that;
                    $('tr', this).each(function(row) {
                        $('td:eq(' + colIdx + ')', this).filter(':visible').each(function(col) {
                            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;
                            }
                        });
                    });
                });
            }

            $(function() {
                $("#table").rowspan(0); 
                $("#table").rowspan(1);
            });

        </script>

 

相关文章:

  • 2021-08-15
  • 2022-01-30
  • 2021-12-30
  • 2021-11-04
  • 2022-12-23
  • 2022-12-23
  • 2021-10-08
猜你喜欢
  • 2022-12-23
  • 2021-12-07
  • 2022-12-23
  • 2021-10-28
  • 2022-02-13
  • 2021-10-25
  • 2021-12-04
相关资源
相似解决方案