el表達式 if 和 if else 的寫法

 

javaScript的if else你們都不會陌生,但可能不少小夥伴並不知道在jsp文件裏,el表達式的if else是怎麼寫的,下面安利給各位小夥伴。html

 

el表達式 if 代碼示例
示例1
<c:if test="${jsonObject.transportTypeName eq '火車'}">
     <li><span>運費</span><span class="orderdetails-jiage-1">0</span></li>
</c:if>

 

示例2java

<c:if test="${empty currentRoleId}"> 
     currentRoleId爲空 
</c:if> 
<c:if test="${not empty currentRoleId}"> 
     currentRoleId不爲空 
</c:if> 

  

示例3json

<c:when test="${condition1}">  
  
  condition1爲true  
  
</c:when> 

  

 
el表達式 if  else代碼示例  使用choose  when otherwise 
示例1
<c:choose>
     <c:when test="${jsonObject.transportTypeName eq '火車' || '散船' || '自提' || '集裝箱' || '集裝箱自提' || '汽車'}">
          <li><span>運費</span><span class="orderdetails-jiage-1">0</span></li>
     </c:when>
     <c:otherwise>
          <li><span>運費</span><span class="orderdetails-jiage-1">¥${jsonObject.deliveryFee == null ? 0.00 : jsonObject.deliveryFee}</span></li>
     </c:otherwise>
</c:choose>

  

示例2jsp

<c:choose>
<c:when test="${var.index % 2 == 0}">
       *
</c:when>
<c:otherwise>
       *
</c:otherwise>
</c:choose>

  

示例3spa

<c:choose>
     <c:when test="${Object.Name != null}">
                *
     </c:when>
     <c:otherwise>
               *
     </c:otherwise>
</c:choose>
相關文章
相關標籤/搜索