DataTables jquery插件无法正常工作

时间:2014-02-18 09:58:34

标签: jquery datatables

之前我已经成功使用过Datatables插件,现在我想在另一个网站上使用它并且没有任何成功使它运行。

正在将css和js加载到页面中,我的表的id对我来说很好,但我必须遗漏一些东西......

以下是我的页面http://pgh3.org/modx/top-runners.html

的链接

请参阅页面源代码,可以看出我已经注释了很多其他的javascript引用,因为我认为这些可能会以某种方式干扰,但似乎并非如此

1 个答案:

答案 0 :(得分:0)

您的控制台会弹出此错误:

Uncaught TypeError: Cannot read property 'asSorting' of undefined 

尝试在表格中添加THEAD部分和TBODY部分。

<table id="runTable" border="0" align="center">
   <thead>
       <tr>
           <th>#</th>
           <th>&nbsp;</th>
           <th align="left">&nbsp;&nbsp;Name</th>
           <th align="left">&nbsp;&nbsp;Hash Name</th>
           <th align="center">Runs</th>
       </tr>
   </thead>
   <tbody>
       <!-- Your table body here -->
   </tbody>
</table>