数据表分页不起作用

时间:2018-07-30 19:41:20

标签: javascript jquery twitter-bootstrap datatables

由于某种原因,我的数据表上的分页无法正常工作...我没有收到任何错误,除分页之外,其他所有功能似乎都正常工作

它是这样的:

enter image description here

单击按钮不会执行任何操作,也不会返回任何错误。

我只是像这样在页面上将其加载到jQuery中

('#participantsTable').DataTable({
        bSortable: true,
        paging: true,
        bFilter: true,
    });

排序有效,过滤器有效,只是分页无效。

HTML看起来像这样:

<table id="participantsTable" class="table table-striped table-bordered table-hover" cellspacing="0" width="100%">
    <thead> 
        <tr> 
            <th>Name</th> 
            <th>Email</th> 
        </tr>
    </thead>
    <tbody>
           <tr>
               <td class="participant-name">Simon</td>
               <td class="participant-email">email@email.com</td>
           </tr>
           //20 more tr's
     </tbody>
 </table>

有人知道吗?谢谢!

0 个答案:

没有答案