struts2 标签完成分页,类似百度,显示页签列表
struts2标签完成分页,显示的形式就像百度,可以显示出所有的页签。看如下代码:
<table id="pager"> <tr> <s:iterator value="new int[pageBean.totalPage]" status="i"> <td> <s:if test="pageBean.currentPage == #i.index+1 "><font color="#000501"><s:property value="#i.index+1"/></font> </s:if> <s:else> <s:a href="admin/index.action?page= %{#i.index+1}"><s:property value="#i.index+1"/> </s:a> </s:else> </td> </s:iterator> <td> <a href="admin/index.action?page=<s:property value="%{pageBean.currentPage+1}"/>" id="next" onclick="return next(${page},<s:property value="%{pageBean.totalPage}"/>);"><font style="font-size: 30px;">下一页</font> </a> </td> </tr> </table>其中,s:iterator循环,从1一直到最大的页数。该标签中间是一个判断,如果循环到当前所在页数,就不加链接标签,否则就加上链接标签。
相关推荐
magvwiz 2020-09-26
mickeychan 2020-09-17
rungod 2020-09-16
xiaozhukuaitui 2020-09-05
小西0 2020-09-05
xiaozhukuaitui 2020-08-25
龙心尘 2020-08-25
rungod 2020-08-22
waiwaiLILI 2020-07-20
shilongdred 2020-06-28
人工智能快报 2020-06-09
shilongdred 2020-06-08
id=3&hmsr=%E5%BC%80%E5%8F%91%E8%80%85-AI%E5%AD%A6%E4%B9%A0%E8%B7%AF%E7%BA%BF&hmpl=&hmcu=&hmkw=&hmci=
zmosquito 2020-06-02
nextwhy 2020-05-20
fengyeezju 2020-04-20
etzt 2020-04-16