在IE浏览器上面
<c:if test="empty list">
some thing
</c:if>
<c:if test=" not empty list">
some thing
</c:if>
不显示。
<c:choose>
<c:when test="">
something
</c:when>
<c:otherwise>
some thing
</c:otherwise>
</c:choose>
都显示
why?
在IE浏览器上面
<c:if test="empty list">
some thing
</c:if>
<c:if test=" not empty list">
some thing
</c:if>
不显示。
<c:choose>
<c:when test="">
something
</c:when>
<c:otherwise>
some thing
</c:otherwise>
</c:choose>
都显示
why?