我想使用tablesorter.js。
在 FireBug 中,当我启动时$("#myTable").tablesorter();
,它会返回[table#myTable.table]
。
但是当我想排序时$("#myTable").tablesorter( {sortList: [[0,0], [1,0]]} );
,它会返回这个错误:
TypeError: table.config.parsers is undefined
...tion("text", "asc", c) : makeSortFunction("text", "desc", c)) : ((order == 0) ? ...
jquery.tablesorter.js (ligne 600)
页面启动时没有错误,我使用ready
函数来启动 tablesorter。
这是一个简短的版本:
<script type="text/javascript" src="/static/js/jquery.tablesorter.js"></script>
<script type='text/javascript'>
$(function() {
$("#myTable").tablesorter();
});
</script>
<table id="myTable" class="table table-condensed table-striped tablesorter">
<thead>
<tr>
<th></th>
<th>Nom</th>
<th>Taille</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
我使用来自推特的引导程序。