<tr> <td> 附件: <c:forEach var="fileName" items="${fileName}" varStatus="status"> <c:out value="${fileName}" /> <c:if test="${!status.last}">、</c:if> </c:forEach> </td> </tr>如果值为空就把这个tr标签隐藏
时间: 2023-07-19 09:15:00 浏览: 165
隐藏file元素
你的问题是如何判断值为空并隐藏这个tr标签。可以通过以下代码实现:
```
<c:if test="${empty fileName}">
<tr style="display:none;">
<td>附件:</td>
</tr>
</c:if>
<c:if test="${not empty fileName}">
<tr>
<td>附件:
<c:forEach var="fileName" items="${fileName}" varStatus="status">
<c:out value="${fileName}" />
<c:if test="${not status.last}">、</c:if>
</c:forEach>
</td>
</tr>
</c:if>
```
这样,如果值为空,就会隐藏这个tr标签。
阅读全文