1.jstl c 标签实现判断功能

本文详细介绍了Java服务器页面中常用的EL表达式及JSTL标签库中的<c:if>、<c:choose>、<c:when>和<c:otherwise>等标签的使用方法,并通过实例演示了如何进行条件判断。
摘要由CSDN通过智能技术生成

单个判断:
<c:if test="${resource.value=='GALL' && resource.checked == true}">
context here!
</c:if>
多重判断:
<c:choose>
<c:when test="${resource.value=='GALL' && resource.checked == true}">
Your context here!
</c:when>
<c:otherwise>Your context here!</c:otherwise>
</c:choose>

 

 

<c:otherwise>

 
  在同一个 <c:choose> 中,当所有 <c:when> 的条件都没有成立时,则执行 <c:otherwise> 的本体内容。
 
  语法
 
  <c:otherwise>
 
  本体内容
 
  </c:otherwise>
 
  属性
 
  无
 
  限制
 
  ·<c:otherwise> 必须在 <c:choose> 和 </c:choose>之间
 
  ·在同一个 <c:choose> 中时,<c:otherwise> 必须为最后一个标签
 
  说明
 
  在同一个 <c:choose> 中,假若所有 <c:when> 的test属性都不为true时,则执行 <c:otherwise> 的本体内容。
 
  范例
 
  笔者举一个典型的 <c:choose>、<c:when>和<c:otherwise>范例:
 
  <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>
 
  范例说明:当condition1为true时,会显示“condition1为true”;当condition1为false且condition2为true时,会显示“condition2为true”,如果两者都为false,则会显示“condition1和condition2都为false”。
 
  注意
 
  假若condition1和condition2两者都为true时,此时只会显示"condition1为true",这是因为在同一个<c:choose>下,当有好几个<c:when>都符合条件时,只能有一个<c:when>成立。

转载于:https://www.cnblogs.com/yjhrem/articles/2548450.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值