欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jsp页面的选择判断

程序员文章站 2022-05-14 22:21:47
...
[table]
||
[/table]我们在做jsp页面判断时会发现:
jstl的c:if是没有else滴。
想要实现if...else...效果要,我们就可以采取<c:choose/>方法



<c:choose>

<c:when test="">
</c:when>

<c:otherwise>
</c:otherwise>

</c:choose>



注意<c:otherwise/>不能和<c:if/>搭配使用否则

jsp页面报错:
javax.servlet.jsp.JspTagException: Illegal use of <when>-style tag without <choose> as its direct parent