首页 > 其他 > 详细

记录s标签范例

时间:2016-08-03 18:18:32      阅读:82      评论:0      收藏:0      [点我收藏+]
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>遍历器</title>
</head>
<body>
	<center>
		<!-- 遍历器标签 status为遍历变量 -->
		<table border="1px" cellpadding ="0" cellspacing="0">
			<s:iterator var="name" value="{‘Html‘,‘Java‘,‘C++‘,‘JSP‘}" status="st">	
			<s:if test="#st.odd">
				<tr style="background-color:red;">
					<td><s:property value="name"/></td>
				</tr>
			</s:if>
			<s:else>
				<tr style="background-color:green;">
					<td><s:property value="name"/></td>
				</tr>
			</s:else>
			</s:iterator>
		</table>
		<br/>
		<!-- bean标签的使用 需要添加‘‘表明是字符串-->
		<s:bean name="Bean.user" var="usr">
		<s:param name="name" value="‘tom‘"/>
		<s:param name="age" value="20"/>
		</s:bean>
		<s:property value="#usr.name"/>
		
		
	</center>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>输出集合的值</title>
</head>
<body>
	<center>
		<!-- 使用append标签将bean中得list添加到页面并用iterator遍历出来。存在Action中的数据不需要加#,页面数据需呀添加# -->
		<s:append var="myList">
			<s:param value="%{list1}"></s:param>
		</s:append>
		<s:iterator value="%{#myList}">
			<s:property/>
		</s:iterator>
		<br/>
		<!-- 控制标签 -->
		<s:if test="‘A‘ in {‘A‘,‘B‘}">
		In
		</s:if>
		<s:else>
		Not In
		</s:else>
		<br/>
		<!-- generator标签将集合分割,按separator分割。 -->
		<!-- count是输出多少个元素 -->
		<s:generator count="2" separator="," val="%{‘aaa,bbb,ccc,ddd‘}">
			<s:iterator>
				<s:property/>
			</s:iterator>
		</s:generator>
		
	</center>
</body>
</html>

  

记录s标签范例

原文:http://www.cnblogs.com/chentingk/p/5733756.html

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