根据下一个COLUMN按字母和数字排序

时间:2018-10-01 21:57:43

标签: javascript jquery html

我试图用2个按钮对我的桌子进行排序

  1. 按字母顺序对它们进行排序
  2. 按数字排序

我有一张桌子,桌子的布局看起来像这样:

1 | 2
3 | 4
4 | 5
6 | 7

有很多关于如何按行进行排序的信息,但是我似乎在列上找不到任何内容。

我在创建表格时正在使用以下代码:

var currentTr = $('<tr>');
  var table = $('#table');
  $('#dw td').each(function(index)
  {
      currentTr.append(this);
      if (index % 2)
      {
          table.append(currentTr);
          currentTr = $('<tr>');
      }

      else { table.append(currentTr); }
  });
  $('#dw').remove();

非常感谢您的帮助!

0 个答案:

没有答案