使用jquery tableSorter:https://github.com/christianbach/tablesorter 我有这个错误
Uncaught TypeError: $(...).tablesorter is not a function
鉴于我使用jquery 1.8并正确加载了js文件
我有桌子:
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="tableau"><thead>
<tr>
<th>col1</th>
<th>col2</th>
</tr>
</thead>
<tbody>
<tr><td>1</td><td>1</td> </tr>
<tr><td>1</td><td>1</td> </tr>
</tbody>
</table>
和我的javascript代码:
$(document).ready(function () {
$("table .tableau").tablesorter(); )};