博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于<:if>没有<c:else>解决方案 ...
阅读量:4957 次
发布时间:2019-06-12

本文共 1020 字,大约阅读时间需要 3 分钟。

[html] 
  1. <c:if>没有<c:else>可以用<c:choose>来取代结构:  
  2. <c:choose>  
  3.   
  4.    <c:when test="">    如果  
  5.    </c:when>  
  6.      
  7.    <c:otherwise>  否则  
  8.    </c:otherwise>  
  9. </c:choose>  
  10.   
  11. 在同一个 <c:choose> 中,当所有 <c:when> 的条件都没有成立时,则执行 <c:otherwise> 的本体内容。  
  12.   
  13.   语法  
  14.   
  15.   <c:otherwise>  
  16.   
  17.   本体内容  
  18.   
  19.   </c:otherwise>  
  20.   
  21.   属性  
  22.   
  23.   无  
  24.   
  25.   限制  
  26.   
  27.   ·<c:otherwise> 必须在 <c:choose> 和 </c:choose>之间  
  28.   
  29.   ·在同一个 <c:choose> 中时,<c:otherwise> 必须为最后一个标签  
  30.   
  31.   说明  
  32.   
  33.   在同一个 <c:choose> 中,假若所有 <c:when> 的test属性都不为true时,则执行 <c:otherwise> 的本体内容。  
  34.   
  35.   范例  
  36.   
  37.   笔者举一个典型的 <c:choose><c:when><c:otherwise>范例:  
  38.   
  39.   <c:choose>  
  40.   
  41.   <c:when test="${condition1}">  
  42.   
  43.   condition1为true  
  44.   
  45.   </c:when>  
  46.   
  47.   <c:when test="${ condition2}">  
  48.   
  49.   condition2为true  
  50.   
  51.   </c:when>  
  52.   
  53.   <c:otherwise>  
  54.   
  55.   condition1和condition2都为false  
  56.   
  57.   </c:otherwise>  
  58.   
  59.   </c:choose>  
  60.   
  61.   范例说明:当condition1为true时,会显示“condition1为true”;当condition1为false且condition2为true时,会显示“condition2为true”,如果两者都为false,则会显示“condition1和condition2都为false”。  
  62.   
  63.   注意  
  64.   
  65.   假若condition1和condition2两者都为true时,此时只会显示"condition1为true",这是因为在同一个<c:choose>下,当有好几个<c:when>都符合条件时,只能有一个<c:when>成立。  

转载于:https://www.cnblogs.com/lovejj1994/p/7182191.html

你可能感兴趣的文章
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>
链接元素<a>
查看>>
Binding object to winForm controller through VS2010 Designer(通过VS2010设计器将对象绑定到winForm控件上)...
查看>>
Spring Boot实战笔记(二)-- Spring常用配置(Scope、Spring EL和资源调用)
查看>>
第二章:webdriver 控制浏览器窗口大小
查看>>