首页 > 系统服务 > 详细

hibernate分页中跳转到第几页的功能

时间:2014-04-14 12:01:17      阅读:776      评论:0      收藏:0      [点我收藏+]

在之前写的“首页”,“上一页”,“下一页”,“尾页”功能中,我使用这样的方式获取到action:

      <button type="button" onclick="window.location=‘topicAction_findAll?page_num=${page_num+1}‘">下一页</button>

在写跳转到第几页的功能时,苦于不知道怎样获取到输入框中的值赋给page_num,经过查询,发现这种方法是可行的:

      body中代码:

      <td><input type="text" id="page_id"/></td>

      <td><button type="button" onclick="test()">确定</button></td>

      javascript代码:

      <script type="text/javascript">

      function test(){

          var page = document.getElementById("page_id").value;

          window.location.href="topicAction_findAll?page_num="+page;

      }

      </script>

感谢百度用户的回答!

原文链接:http://zhidao.baidu.com/link?url=lGyat99qicihqa5jpWdseX9tVLdDwsO3CdqXnsTG5o5zxr1i8VdL9ldwyTM06_knHG41P7cHEnn4NMLmqkueAa

hibernate分页中跳转到第几页的功能,布布扣,bubuko.com

hibernate分页中跳转到第几页的功能

原文:http://www.cnblogs.com/desen/p/3662490.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!