码迷,mamicode.com
首页 > 其他好文 > 详细

c标签 if else

时间:2015-05-30 09:25:36      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:jstl   c if else   

最近学习发现JSTL标签库中c标签分支只有c:if而没有else,很多人可能觉得这就不方便了,一开始我也是这样,后来发现还有另外一组标签可以代替if else的功能,那就是

<c:choose>和<c:when>、<c:otherwise>。来看个例子:

<c:choose>  
   <c:when test="${user.focusrecord=='1' }"> 
       <span>case1</span>
   </c:when> 


   <c:when test="${user.focusrecord=='0' }"> 
       <span>case2</span>
   </c:when> 
   
   <c:otherwise> 
<span style="white-space:pre">		</span><span>case3</span>
   </c:otherwise>  
</c:choose>
这组标签说明当满足条件1执行case1,而其他两个不执行,当满足条件2执行case2,而其他两个不执行,当所有<c:when>都不满足时才执行<c:otherwise>,这就实现了if else的多分支功能


c标签 if else

标签:jstl   c if else   

原文地址:http://blog.csdn.net/u013863751/article/details/46242127

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!