THEAD
是否可以使用 dataTables处理 2 行?
<table>
<thead>
## row 1
## row 2
</thead>
<tbody></tbody>
</table>
在第 1 行中,我需要 2 个单列和一列colspan="3"
:
<tr>
<th></th>
<th></th>
<th colspan="3"></th>
</tr>
在第 2 行,我需要 5 列:
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
但我有一个案例,我不需要 5 列,而只需要 3 列。
这可以动态生成吗?
更新:我试过:http ://datatables.net/release-datatables/examples/basic_init/complex_header.html
但是没有很好的例子它是如何生成的。