1.引入jquery與twbsPagination

引入js
2.引入div,展示分頁效果
<%--分頁--%>
<span style="font-size:14px;">
<div class="text-center">
<ul id="pagination-demo" class="pagination-sm"></ul>
</div>
</span>

div效果展示
3.script中引入函數(shù)
//分頁
$('#pagination-demo').twbsPagination({
//total總記錄數(shù),就是多少條數(shù)據(jù) pages總頁數(shù)
totalPages: ${page.total},
visiblePages: 5,
first:'首頁',
last:'末頁',
prev:'上一頁',
next:'下一頁',
href:"?p={{number}}"
});
最終才會展示這種效果:

page.png