我在jsp页面中有html表。我的代码如下所示:
<c:choose>
<c:when test="${empty institutionAttributes}">
<h2 align="center"><spring:message code="label.attributes.msg"/> </h2>
</c:when>
<c:otherwise>
<h3 align="center"><spring:message code="label.result.msg"/> </h3>
<table border="1" align="center">
<thead>
<tr>
<th align="center"><spring:message code="label.header.table.name" /></th>
<th align="center"><spring:message code="label.header.table.type" /></th>
<th align="center"><spring:message code="label.header.table.date" /></th>
<th align="center"><spring:message code="label.header.table.dayscheduale" /></th>
<th align="center"><spring:message code="label.header.table.workscheduale" /></th>
<th align="center"><spring:message code="label.header.table.rotation" /></th>
<th align="center"><spring:message code="label.header.table.numberkids" /></th>
<th align="center"><spring:message code="label.header.table.under3" /></th>
<th align="center"><spring:message code="label.header.table.upper3" /></th>
<th align="center"><spring:message code="label.header.table.goschool" /> <br> <fmt:formatDate value="${formDescriptionVar.kidsGoSchoolDate}" pattern="yyyy"/> <spring:message code="label.header.table.year" /></th>
</tr>
</thead>
<tbody>
<c:forEach items="${institutionAttributes}" var="institutionVar">
<tr>
<td align="center">${institutionVar.nameOfInstitution}</td>
</tr>
</c:forEach>
<c:forEach items="${institutionTypeAttributes}" var="institutionTypeVar">
<tr>
<td align="center">${institutionTypeVar.typeOfInstitution}</td>
</tr>
</c:forEach>
<c:forEach items="${formDateAttributes}" var="formDateVar">
<tr>
<td align="center"><fmt:formatDate value="${formDateVar.particularDate}" pattern="dd-MM-yyyy"/> </td>
</tr>
</c:forEach>
<c:forEach items="${formDescriptionAttributes}" var="formDescriptionVar">
<tr>
<td align="center">${formDescriptionVar.daySchedule}</td>
<td align="center">${formDescriptionVar.workScheduale}</td>
<td align="center">${formDescriptionVar.rotation}</td>
<td align="center">${formDescriptionVar.numberOfKids}</td>
<td align="center">${formDescriptionVar.kidsUnder3YearsOld}</td>
<td align="center">${formDescriptionVar.kidsUpper3YearsOld}</td>
<td align="center">${formDescriptionVar.kidsGoSchoolNumber}</td>
</tr>
</c:forEach>
</tr>
</tbody>
</table>
</c:otherwise>
</c:choose>
在 JSP 页面内部,我有带有<thead>
和<tbody>
标签的表格。
在里面<tbody>
我使用 JSP 的<c:forEach>
标签。
在里面<c:forEach>
我使用<tr>
和<td>
标签。
在我想要的图片中:
|------------------------------------|
| Header1 | Header2 | Header3 |
|------------------------------------|
| Value1 | Value2 | Value3 |
|------------------------------------|
我得到什么:
|------------------------------------|
| Header1 | Header2 | Header3 |
|------------------------------------|
| Value1 | | |
|------------------------------------|
| | Value2 | |
|------------------------------------|
| | | Value3 |
|------------------------------------|
所以,问题是在 every中<c:forEach>
创建新的,但我需要在不同的. 我怎样才能做到这一点?<tr>
<c:forEach>
<tr>
<c:forEach>