本例使用的版本为jquery.pagination-1.2.6.js
$("#id").page({ showInfo: false, showJump: false, showPageSizes: true, firstBtnText: ‘首页‘, lastBtnText: ‘尾页‘, prevBtnText: ‘上一页‘, nextBtnText: ‘下一页‘, jumpBtnText:‘跳转‘, infoFormat: ‘{start} ~ {end}条,共{total}条‘, pageSize:20, remote: { pageIndexName: ‘page‘, //请求参数,当前页数,索引从0开始 pageSizeName: ‘rows‘, //请求参数,每页数量 url: webPath+‘/attention/jigou‘, params:{ userId:‘1‘ }, success: function (data, pageIndex) { console.log(data); }, } });
时间: 2024-10-22 07:36:35