博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
struts2 counter循环标签在分页中的使用
阅读量:6419 次
发布时间:2019-06-23

本文共 1018 字,大约阅读时间需要 3 分钟。

hot3.png

struts2提供了<s:bean/>标签,且提供了一个bean类:org.apache.struts2.util.Counter,该类中有first、last等属性,可用使用它获取自增值,如下:

<s:bean name="org.apache.struts2.util.Counter" id="counter">
<s:param name="first" value="1" />
<s:param name="last" value="10" />
<s:iterator>
<s:property/>
</s:iterator>

</s:bean>

其中first属性指定循环起始值,last指定循环终止值,其它相关属性可以查看org.apache.struts2.util.Counter类源码。在下面迭代器中输入循环的当前值,即:current-1

以下struts2 counter循环标签在分页中的使用的实例,在jsp中的部分代码如下:

<form name="userForm" action="**" method="post">

        <select name="currentPage" οnchange="submitForm()">
         <s:bean name="org.apache.struts2.util.Counter" id="counter">
          <s:param name="first" value="1" />
          <s:param name="last" value="page.totalPage" />
                     <s:iterator>
                                   <option value="<s:property/>" 
                                   <s:if test="currentPage == currenter -1">selected</s:if>>
                                   <s:property/>
                                   </option>
                      </s:iterator>
          </s:bean>                                                                                                                                                       </select>                                                                                                                                                           </form>

下面是javascript代码:

<script type="text/javascript">

        function submitForm(){
                var frm=document.usertForm;
                frm.submit();
        }                                                                                                                                                          </script>     

转载于:https://my.oschina.net/huangcongmin12/blog/49553

你可能感兴趣的文章
ifconfig:command not found的解决方法
查看>>
js使用正则表达式判断手机和固话格式
查看>>
计算机是怎么存储数字的
查看>>
Codeforces Round #369 (Div. 2) A. Bus to Udayland 水题
查看>>
adb上使用cp/mv命令的替代方法(failed on '***' - Cross-device link解决方法)
查看>>
C++标准库简介、与STL的关系。
查看>>
Spring Boot 3 Hibernate
查看>>
查询EBS请求日志的位置和名称
查看>>
大型机、小型机、x86服务器的区别
查看>>
J2EE十三个规范小结
查看>>
算法(第四版)C#题解——2.1
查看>>
网关支付、银联代扣通道、快捷支付、银行卡支付分别是怎么样进行支付的?...
查看>>
大数据开发实战:Stream SQL实时开发一
查看>>
C++返回引用的函数例程
查看>>
dll 问题 (转)
查看>>
使用sql生成UUID
查看>>
mysql日期函数(转)
查看>>
REST API用得也痛苦
查看>>
test for windows live writer plugins
查看>>
Tiny210 U-BOOT(二)----配置时钟频率基本原理
查看>>