我已经阅读了一些示例,在Google中搜索了我想要的内容.. 无法真正找到我需要的东西。我也没有在tableorter上看到任何关于它的事情 (http://tablesorter.com)
我基本上想要做的是让插件在自定义表上运行。我用div和span创建的。 有可能的 ?如果是,怎么样?
答案 0 :(得分:0)
为什么要使用<span>
和<div>
代码显示表格?
<table>
语法是有原因的,只需简单地格式化你的表:
<table id="sortTable" class="tablesorter">
<thead>
<tr>
<th>Column</th>
<th>Column</th>
<th>Column</th>
</tr>
</thead>
<tbody>
<tr>
<td>Data</td>
<td>Data</td>
<td>Data</td>
</tr>
</tbody>
</table>
然后将以下jQuery代码添加到页面底部
$(document).ready(function() {
$("#sortTable").tablesorter();
});