java JSP中for each循环的详细用法,初学者。
发布网友
发布时间:2022-04-10 08:43
我来回答
共3个回答
热心网友
时间:2022-04-10 10:12
<%@page pageEncoding="utf-8" contentType="text/html;charset=utf-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<script type="text/javascript" src="js/jquery-1.4.3.js"></script>
<script type="text/javascript">
function doDetail(playerId){
location="detail.do?playerId="+playerId;
}
</script>
</head>
<body>
<%@include file="../common/head.jsp" %>
<span style="color:blue"> <a href="commentForm.do">BBS</a></span>
<br/>
<fieldset>
<legend style="color:red;font-size:30px">玩家列表</legend>
<br/>
<table width="700px" cellpadding="1" cellspacing="1" align="center" border="1">
<tr style="font-size:30px"><td>序号</td><td>玩家编号</td><td>用户名</td><td>邮箱</td><td>性别</td><td>详细</td></tr>
<c:forEach items="${players}" var="player" varStatus="st">
<c:if test="${st.count%2==1}">
<tr bgcolor="#EEEEE0">
<td>${st.count }</td>
<td>${player.playerId }</td>
<td>${player.username }</td>
<td>${player.email }</td>
<td>${player.gender }</td>
<td>
<a href="#" onclick="doDetail(${player.playerId })">详细</a>
</td>
</tr>
</c:if>
<c:if test="${st.count%2==0}">
<tr bgcolor="#F0FFF0">
<td>${st.count }</td>
<td>${player.playerId }</td>
<td>${player.username }</td>
<td>${player.email }</td>
<td>${player.gender }</td>
<td>
<a href="#" onclick="doDetail(${player.playerId })">详细</a>
</td>
</tr>
</c:if>
</c:forEach>
</table>
</fieldset>
</body>
</html>
****************************************************************************************************
反正你只要你一开始写上
“<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>“
接下来的
“<c:forEach items="${players}" var="player" varStatus="st">”中players是servlet或者action传过来的值(譬如是List),player则是你给players中每个对象定义的一个“代号”,当然你定义成“p”也可以,而最后的st是用来对players中成员按序号排列用的。
热心网友
时间:2022-04-10 11:30
<c:FroEach>是JSTL标签里面的自带的一个循环标签,而你下面写的代码确实没错。但要你要明白一点。<c:FroEach items="${players}" > 这个items=的这个值。确切的说是用Request.setAttribute里面取过来的。它对应的是setAttribute里面的key键。如果你的action也就是业务逻辑层写的是什么Key。你<c:FroEach items>就要这应这个key来获取你的对象。这里我就不多说了。越说越让你迷糊。慢慢你就了解了。
热心网友
时间:2022-04-10 13:05
同意楼上用JSTL标签的方法,也可以用java代码
<%
for(Player p : Players)
%>