之前我已经成功使用过Datatables插件,现在我想在另一个网站上使用它并且没有任何成功使它运行。
正在将css和js加载到页面中,我的表的id对我来说很好,但我必须遗漏一些东西......
以下是我的页面http://pgh3.org/modx/top-runners.html
的链接请参阅页面源代码,可以看出我已经注释了很多其他的javascript引用,因为我认为这些可能会以某种方式干扰,但似乎并非如此
答案 0 :(得分:0)
您的控制台会弹出此错误:
Uncaught TypeError: Cannot read property 'asSorting' of undefined
尝试在表格中添加THEAD
部分和TBODY
部分。
<table id="runTable" border="0" align="center">
<thead>
<tr>
<th>#</th>
<th> </th>
<th align="left"> Name</th>
<th align="left"> Hash Name</th>
<th align="center">Runs</th>
</tr>
</thead>
<tbody>
<!-- Your table body here -->
</tbody>
</table>