G***G 发帖数: 16778 | 1 如何用html写出一个表格,
header1 1 1 1
header2 2 2 2
header3 3 3 3
每一行可以sort.
The rows of header1, header2, and header3 are sortable. | a*w 发帖数: 4495 | 2 var data = [[1,2,3], [1,2,3], [1,2,3]];
var index = 1;
data.sort(function (a, b) {
if (a[index] < b[index]) return -1;
if (a[index] > b[index]) return 1;
return 0;
})
数据排序完了,你再刷新一次表格。
或者你用Google的表格https://developers.google.com/chart/interactive/docs/
gallery/table
把它隐藏了,自己用矩阵运算输出另一个表。用你的表头的click事件调
用google表格的sort,在回调函数里刷新自己的表。
【在 G***G 的大作中提到】 : 如何用html写出一个表格, : header1 1 1 1 : header2 2 2 2 : header3 3 3 3 : 每一行可以sort. : The rows of header1, header2, and header3 are sortable.
| y****e 发帖数: 23939 | 3 jQuery有个plugin叫Datatable做这个太容易了
用GWT的话,celltable或grid都可以轻松实现 |
|