我试图用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();
非常感谢您的帮助!