forEach处理List每行显示固定的几个

我用C标签中的forEach取值,如何每行显示4个,多的在第二行显示!
<c:forEach  var="s" list="${list}" varStates="vs">
  <c:if test="${vs.count%4==0}"><br></c:if>
</c:forEach>

 

以下是个实际的使用列子:(注意如果最后一行不是4个,就需要补充空的td,例子有处理,但需要传参数)

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>

<table width="100%" border="0" cellspacing="0" cellpadding="0" class="sxlist_tab" name="table" id="table">
  <thead>
    <tr>
          <th width="4%">序号</th>
          <th width="28%">事项类别</th>
          <th width="28%">项目名称</th>
          <th width="12%">提醒时间</th>
          <th width="28%">提醒内容</th>
    </tr>
  </thead>
  <tbody>
  <c:choose>
	<c:when test="${!empty effReceiveInstanceList}">
		<c:forEach items="${effReceiveInstanceList}" var="effBean" varStatus="status">
       <tr>
          <td>&nbsp;${effBean.indexnum }</td>
          <td title='${effBean.apply_item_name}'>
		   <c:choose>   
				<c:when test="${fn:length(effBean.apply_item_name) > 20}">   
					<c:out value="${fn:substring(effBean.apply_item_name, 0, 20)}..." />   
				</c:when>   
			   <c:otherwise>   
				  <c:out value="${effBean.apply_item_name}" />   
			   </c:otherwise>   
			</c:choose>
		  </td>
          <td title='${effBean.projectname }'>
			<c:choose>   
				<c:when test="${fn:length(effBean.projectname) > 20}">   
					<c:out value="${fn:substring(effBean.projectname, 0, 20)}..." />   
				</c:when>   
			   <c:otherwise>   
				  <c:out value="${effBean.projectname }" />   
			   </c:otherwise>   
			</c:choose> 
		  </td>
		  <td>&nbsp;${effBean.sentdate }</td>
          <td title='${effBean.news_content }'>
		  <c:choose>   
			<c:when test="${fn:length(effBean.news_content) > 20}">   
				<c:out value="${fn:substring(effBean.news_content, 0, 20)}..." />   
			</c:when>   
			<c:otherwise>   
			  <c:out value="${effBean.news_content }" />   
			</c:otherwise>   
		   </c:choose> 
		  </td>
    </tr>
		</c:forEach>
	</c:when>
</c:choose>
  </tbody>
</table>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值