Paginate使用javascript

时间:2015-06-04 16:39:01

标签: javascript pagination

以下是表格的静态html。我基于我从ajax调用获得的数据(data.length)值的数量来插入表。 现在我需要在此处插入分页,其中仅允许5个表格并且如果它超过第6个,则应该发生动态分页,其中页脚中的值应该增加1(<<<<>>>>> )。

<table id="myTable">
  <tbody id="tBody">
   <td>
   <tr>sample values</tr>
   <tr>sample values</tr>
   <td>
  </tbody>
</table>

for(int i=0;i>data.length;i++)
{
     var Row = $("#myTable #tBody").append("<td><tr></tr></td>");
}

我使用了以下脚本,但这里的问题是,分页没有发生。不知道问题出在哪里,因为我只是JS的初学者。

     <script src=../../simplepagination.js>
    // init bootpag
    $('#page-selection').bootpag({
        total: 10
    }).on("page", function(event, num){
         $("#content").html("Insert content"); 
    });
          </script>

0 个答案:

没有答案