计算分页总页数的较简单的算法

var totalPage = (totalNumber + pageSize - 1) / pageSize;
原文地址:https://www.cnblogs.com/dayang12525/p/12932718.html