SSM分页(同步刷新页面)
前段代码: <div align="center"> <div id="div11" align="center"> <c:choose> <c:when test="${alluser eq null or fn:length(alluser)==0}"> <font>不存在用户</font> </c:when> <c:otherwise> <table align="center" border="1px soild red" cellpadding="0" cellspacing="0"> <tr> <td>编号</td> <td>姓名</td> <td>密码</td> <td>生日</td> <td>地点</td> <c:forEach var="item" items="${alluser}"> <tr> <td>${item.id}</td> <td>${item.uname}</td> <td>${item.upass}</td> <td><fmt:formatDate value="${item.ubirth}" pattern="yyyy-MM-dd"/> </td> <td>${item.place}</td> </tr> </c:forEach> </tr> </table> </c:otherwise> </c:choose> </div> <div