AJAX分页效果简单实现

最近写一个给用户组添加角色的功能,要求一边是未添加的角色,一边是已添加的角色,还有搜索功能, 点击添加后,ajax保存操作.

考虑功能为待查询功能分页 , 下方分页条, 一共有 2*2 ,4个ajax

AJAX分页效果简单实现

JS代码如下:

$(document).ready(function() { App.init(); currentRole(); // 当前角色 currentRolePage();//当前角色分页 noAddRole(); //未添加角色 noAddRolePage();//未添加角色分页 }); //当前角色列表 function currentRole(){ var currentRoleCheckName =$("#currentRoleCheckName").val(); // 当前角色的list集合 $.ajax({ async:true, type:"POST", //date:"groupId=rose",//发送到服务器的数据 url:"${ctx}/group/ajax_showRolesForGroup.do",//请求路径 data:{"groupId":groupId, "page":page1, "checkName":currentRoleCheckName }, dataType:"json", //返回数据的类型 success:function(data){ //成功响应后的回调函数 var result =data.pageSupport.items; console.log(data.pageSupport) var s=""; for(var i in result){ s+="<tr><td>"+result[i].name+"</td>" +"<td>"+result[i].remark+"</td>" +"<td><button type='button'>移除</button></td></tr>"; } $("#currentRole").html(s); } }); } //当前角色的分页 function currentRolePage(){ var currentRoleCheckName =$("#currentRoleCheckName").val(); var totalPage=0; $.ajax({ async:true, type:"POST", //date:"groupId=rose",//发送到服务器的数据 url:"${ctx}/group/ajax_showRolesForGroup.do",//请求路径 data:{"groupId":groupId, "page":page1, "checkName":currentRoleCheckName }, dataType:"json", //返回数据的类型 success:function(data){ //成功响应后的回调函数 totalPage=data.pageSupport.last; console.log(totalPage) var i= 0; var a=""; for( i=page1-2; i<=page1+2;i++){ if(i>0 && i<=totalPage){ if(i == 1){ $("#prev1").attr('class','disabled'); } if(page1 == i){ a+="<li bs1='" + i + "'><a>"+i+"</a></li>"; }else{ a+="<li bs1='" + i + "'><a href='javascript:void(0);' >"+i+"</a></li>"; } } } $("#fy_list").html(a); } }); } //中间页 function a_method(i) { page1 = i; currentRole(); // 当前角色 currentRolePage();//当前角色分页 } //查询操作 function currentRoleCheck(){ page1=1; currentRole(); // 当前角色 currentRolePage();//当前角色分页 }

HTML代码如下:

<!-- 两个相同的DIV 下面只是一个--> <div> <div> <div> <h2><b>已选角色</b></h2> </div> <div> <div> <form method="POST" > <div> <input type="text" placeholder="角色名称" maxlength="40" /> </div> <div> </div> <buttontype="button" >查询</button> </form> </div> <div > <table > <thead> <tr> <th>角色名称</th> <th>备注信息</th> <th>操作</th> </tr> </thead> <tbody> <!-- 当前用户组已有角色list --> </tbody> </table> </div> <div> <div> <ul> </ul> </div> </div> </div> </div> </div>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjsdxy.html