-
两种分页的区别
查看全部 -
结构图
查看全部 -
mvc查看全部
-
load jdbc properties fragment查看全部
-
分页样式一查看全部
-
分页样式查看全部
-
查询SQL语句拼接查看全部
-
重要的复习章节,关于List<map<String,Object>>返回数据库数据的查看全部
-
Pager查看全部
-
<div> <font color="red">${errorMsg}</font> </div>查看全部
-
//校验pageNum参数输入合法性 String pageNumStr = request.getParameter("pageNum"); if(pageNumStr != null && StringUtil.isNum(pageNumStr)){ request.setAttribute("errorMsg","参数传输错误"); request.getRequestDispatcher("sublistStudent.jsp").forward(request,response); return; }查看全部
-
public class StringUtil{ /** *校验字符串是否是大于0的数字 *@param string *@return */ public static boolean isNum(String string){ Pattern pattern = Pattern.complie("[1-9]{1}\\d"); Matcher matcher = pattern.matcher(string); return matcher.matches(); } }查看全部
-
public class StringUtil{ /** *检验字符串是否是大于0的数字 *@param string *@return */ public static boolean isNum(String string){ Pattern pattern=Pattern.compile("[1-9]{1}\\d*"); Matcher matcher=pattern.matcher(string); return matcher.matches(); } }查看全部
-
<br>共${result.totalRecord}条记录,共${result.totalPage}页 当前第${result.currentPage}页 <a href="#" onclick="firstPage();">首页</a> <a href="#" onclick="nextPage();">下一页</a> <a href="#" onclick="previousPage();">上一页</a> <a href="#" onclick="lastPage();">尾页</a> 查看全部
-
<script type="text/javascript"> //当前显示第几页数据 var currentPage=${result.currentPage}; //一共多少页数据 var totalPage=${pager.totalPage}; function submitForm(actionUrl){ var formElement=document.getElementById("baseLineForm"); formElement.action=actionUrl; formElement.submit(); } </script>查看全部
举报
0/150
提交
取消