AI编程助手
AI免费问答

jsp页面数据分页模仿百度分页效果(实例讲解)

韦小宝   2018-01-18 09:51   2061浏览 原创

下面小编就为大家带来一篇jsp页面数据分页模仿百度分页效果(实例讲解)。小编觉得挺不错的,现在就分享jsp源码给大家,也给大家做个参考。对jsp感兴趣的一起跟随小编过来看看吧

废话不多说,直接上代码

请根据自己的项目、包名修改





nbsp;html>


  <meta>
  <title>数据分页</title>
  <style>
    .page a{
      min-width: 34px;
      height: 34px;
      border: 1px solid #e1e2e3;
      cursor: pointer;
      display:block;
      float: left;
      text-decoration: none;
      text-align:center;
      line-height: 34px;      
    }
    
    .page a:HOVER {
      background: #f2f8ff;
      border: 1px solid #38f ;
    }
    .page a.prev{
      width:50px;
    }
    .page span{
      width: 34px;
      height: 34px;
      border: 1px solid transparent;
      cursor: pointer;
      display:block;
      float: left;
      text-decoration: none;
      text-align:center;
      line-height: 34px;
      cursor: default;
    }
  </style>
                            pageCount ? pageCount : currPage;      PreparedStatement pst = conn.prepareStatement("select * from student limit ?,?");   pst.setInt(1,currPage*pageSize-pageSize);   pst.setInt(2,pageSize);   ResultSet rs = pst.executeQuery();      while(rs.next()){   %>                                  
ID姓名年龄专业
       首页",1));          if(currPage>=7){            start=currPage-5;            end=currPage+4;          }          if(start>(pageCount-10)){            start=pageCount-9;          }          if(currPage>1){            out.print(String.format("上一页",currPage-1));          }                    for(int i=start;ipageCount) break;            String pageinfo=String.format("%d",i,i);            if(i==currPage){              pageinfo=String.format("%d",i);            }            out.print(pageinfo);          }                    if(currPage下一页",currPage+1));          }                    out.print(String.format("尾页",pageCount));         %>      

以上这篇jsp页面数据分页模仿百度分页效果(实例讲解)就是小编分享给大家的全部内容了,希望能给大家一个参考!!

相关推荐:

jsp连接mysql代码参考~亲测可用

jsp中ResourceBundle类的国际化

JSP基础入门

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。