我是靠谱客的博主 快乐小蚂蚁,这篇文章主要介绍struts2标签的迭代用法()的简单用法,现在分享给大家,希望可以做个参考。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!-- 导入struts2标签库 --> <%@taglib prefix="s" uri="/struts-tags"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> <h1>${sessionScope.username}登录成功</h1> <label>作者李刚的图书</label> <!--迭代输出ValueStack值栈中的books对象,其中status是迭代的符号--> <table> <s:iterator value="#session.books" status="indexValue" var="book"> <!-- 判断书号是否为奇数 --> <s:if test="#indexValue.odd == true"> <tr style="background-color:red"> </s:if> <s:else> <tr> </s:else> <td> <!-- 输出索引值 --> <s:property value="#indexValue.index"/> <!-- 依次输出书名 --> <s:property value="#book"/> </td> </tr> </s:iterator> </table> </body> </html>

最终输出结果:


最后

以上就是快乐小蚂蚁最近收集整理的关于struts2标签的迭代用法()的简单用法的全部内容,更多相关struts2标签内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(70)

评论列表共有 0 条评论

立即
投稿
返回
顶部