拆分一个“;“大”;表到较小的表

Split a "big" table to smaller tables

本文关键字:一个 拆分      更新时间:2023-09-26

我想将一个"大"表(很多列)拆分为较小的表,例如每两列。

有简单的方法吗?

我这里只有桌子http://jsfiddle.net/xy3UF/4/.举个例子,我想把它分成两列。因此,我应该有三个表,其中包含#列,每个表包含大表中的2列。

所需输出:http://jsfiddle.net/xy3UF/15/

function split($table, chunkSize) {
  var cols = $("th", $table).length - 1;
  var n = cols / chunkSize;
  for (var i = 1; i <= n; i++) {
     $("<br/>").appendTo("body");
     var $newTable = $table.clone().appendTo("body");
     for (var j = cols + 1; j > 1; j--) {
         if (j + chunkSize - 1 <= chunkSize * i || j > chunkSize * i + 1) {
             $('td:nth-child(' + j + '),th:nth-child(' + j + ')', $newTable).remove();
         }
     }
  }  
}

其中$table是表jQuery对象,chunkSize是每个拆分的大小。在您的示例中,将其称为split($("table"), 2)。请注意,chunkSize必须平分列数(不包括第一列)才能正常工作,例如,对于具有7列的表,chunkSize有效值为1、2和3。

演示

我制作了更好版本的表拆分函数,支持固定列(在所有表中重复),它浪费了很多时间:

function range(start, end) {
  var array = new Array();
  for (var i = start; i <= end; i++) {
    array.push(i);
  }
  return array;
}
function splitTables($tables, chunkSize, fixCols) {
  $table = $($tables);
  console.log('fixCols :', fixCols);
  fixCols = fixCols || [];
  console.log('fixCols :', fixCols);
  fixCols = fixCols.sort();
  console.log('fixCols :', fixCols);
  //chunkSize -= fixCols.length;
  var rowLength = $('tr:first>*', $table).length;
  console.log('total length:', rowLength);
  var n = Math.ceil(rowLength / chunkSize);
  var bufferTables = [];
  var numberList = range(1, rowLength);
  for (var i = 1; i <= n; i++) {
    var colList = fixCols.slice(0);
    //console.log('fixCols :',fixCols);
    //console.log('colList :',colList);
    console.log('numberList :', numberList);
    while (colList.length < chunkSize && numberList.length > 0) {
      var index = numberList.shift();
      console.log(index, colList);
      if (colList.indexOf(index) == -1) {
        colList.push(index);
      }
    }
    console.log('col list:', colList);
    var $newTable = $table.clone(true)
    for (var index = 1;
      (index <= rowLength); index++) {
      if (colList.indexOf(index) == -1) {
        console.log('removing:', index);
        $('tr>:nth-child(' + index + ')', $newTable).hide();
      }
    }
    bufferTables.push($newTable)
  }
  $(bufferTables.reverse()).each(function(i, $el) {
    $('<br/>').insertAfter($table);
    $el.insertAfter($table);
  });
  $table.remove();
}
$(function() {
  $('#sbtn').click(function() {
    splitTables($("#tb"), 3, [1]);
  });
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="sbtn">Split Table !</button>
<table border="1" id="tb">
  <thead>
    <tr>
      <th>0</th>
      <th>1</th>
      <th>2</th>
      <th>3</th>
      <th>4</th>
      <th>5</th>
      <th>6</th>
    </tr>
  </thead>
  <tfoot>
    <tr>
      <td>Sum</td>
      <td>$180</td>
      <td>$500</td>
      <td>$300</td>
      <td>$700</td>
      <td>$600</td>
      <td>$1000</td>
    </tr>
  </tfoot>
  <tbody>
    <tr>
      <td>Home</td>
      <td>$100</td>
      <td>$200</td>
      <td>$200</td>
      <td>$300</td>
      <td>$400</td>
      <td>$500</td>
    </tr>
    <tr>
      <td>Work</td>
      <td>$80</td>
      <td>$300</td>
      <td>$100</td>
      <td>$400</td>
      <td>$200</td>
      <td>$500</td>
    </tr>
  </tbody>
</table>

这要简单得多:

  1. 标记TR:

    <tr><td>some</td><!-- SPLITHERE -->
    
  2. 拆分表格:

    document.body.innerHTML = document.body.innerHTML.replace(/<!-- SPLITHERE --'>'s*<'/tr>/i, '</tr></table></div><div class="eachPage"><table class="items">');
    

    注意:您必须对该表的父元素(在我的示例中为主体)进行innerHTML更改,而不是对表本身进行更改,这将不起作用。

使用XSLT可以轻松解决问题。

请访问此处:将大表拆分为几个较小的表