我想使用tablesorter.js。jQuery tablesorter.js錯誤行600
在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>
我用引導從Twitter。
我們可以看到表格的html嗎? – Owlvark