首页 > 代码库 > JSP 基础之 JSTL <c:choose>用法 if else

JSP 基础之 JSTL <c:choose>用法 if else

 

<c:choose>  
  <c:when test="${condition1}">  
         condition1为true  
  </c:when>  
  <c:when test="${ condition2}">  
	  condition2为true  
  </c:when>  
  <c:otherwise>  
 	 condition1和condition2都为false  
  </c:otherwise>  
</c:choose> 

  

JSP 基础之 JSTL <c:choose>用法 if else