jsp页面的选择判断

我们在做jsp页面判断时会发现:
jstl的c:if是没有else滴。
想要实现if...else...效果要,我们就可以采取<c:choose/>方法
Sql代码  收藏代码
  1. <c:choose>  
  2.   
  3. <c:when test="">  
  4. </c:when>  
  5.   
  6. <c:otherwise>     
  7. </c:otherwise>  
  8.     
  9. </c:choose>  



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

jsp页面报错:
javax.servlet.jsp.JspTagException: Illegal use of &lt;when&gt;-style tag without &lt;choose&gt; as its direct parent

你可能感兴趣的:(jsp页面的选择判断)