var defaultOption = {
pageSize : 10, // 默认页面大小
pageBtnCount : 5, // 页面俺就总数
showFirstLastBtn : true,
firstBtnText : "第一页",
lastBtnText : "最后一页",
prevBtnText : "«",
nextBtnText : "»",
loadFirstPage : true,
remote : {
url : null,
params : null,
callback : null,
success : null,
beforeSend : null,
complete : null,
pageIndexName : ‘currentPage‘, // 当前页码
pageSizeName : ‘maxRows‘, // 从共几页
totalName : ‘totalRows‘ // 多少条记录
},
showInfo : true, // 显示当前显示xxx-xxx记录,共xx记录
infoFormat : ‘当前显示{start} ~ {end} 条记录,共 {total} 条记录‘,// 描述信息
showJump : true, // 是否开启跳转到xx页
jumpBtnText : ‘跳转‘,
showPageSizes : true, // 是否显示每页多少条
pageSizeItems : [ 5, 10, 15, 20, 30 ], // 页面大小选项
debug : false
// 关闭debug模式
}