//分页
layui.use([‘laypage‘], function(){
var laypage = layui.laypage;
laypage.render({
elem: ‘page‘
,count:<?=$page_count?>
,curr:<?=$page?>
,limit:20
,jump: function(obj,first){
//首次不执行
if(!first){
var o = GetRequest();
o.page = obj.curr;
o.url = ‘/goods/lists‘;
window.location.href = createUrl(o);
}
}
});
});
js layui 分页脚本
Posted 谢礼森
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js layui 分页脚本相关的知识,希望对你有一定的参考价值。
以上是关于js layui 分页脚本的主要内容,如果未能解决你的问题,请参考以下文章