可排序表格
重要性:4
使表格可排序:点击<th>
元素应按相应的列排序。
每个<th>
在属性中都有类型,例如
<table id="grid">
<thead>
<tr>
<th data-type="number">Age</th>
<th data-type="string">Name</th>
</tr>
</thead>
<tbody>
<tr>
<td>5</td>
<td>John</td>
</tr>
<tr>
<td>10</td>
<td>Ann</td>
</tr>
...
</tbody>
</table>
在上面的示例中,第一列包含数字,第二列包含字符串。排序函数应根据类型处理排序。
仅支持"string"
和"number"
类型。
工作示例
附注:表格可以很大,可以有任意数量的行和列。