Web開発学習ノート(6):<br>ラベルの使用

741 ワード

演算子+、-、*、/(またはdiv)、および%(またはmod)
関係演算子=(またはeq),!=(またはne)、<(またはlt)、>(またはgt)、<=(またはle)、および>=(またはge)
論理演算子&&(またはand)、|(またはor)および!(またはnot)
検証演算子empty
例:初めて使用する場合、主に演算子の位置に注意します.
<c:if test="${li.type==1 and li.selectType==0}">     </c:if>
<c:if test="${li.type==1 and li.selectType==1}">     </c:if>
<c:if test="${li.type==0}">   </c:if>

例:
<td>
<c:if test="${li.patientSex==null}">   </c:if>
<c:if test="${li.patientSex==0}"> </c:if>
<c:if test="${li.patientSex==1}"> </c:if>
</td>

他の演算子は大同小異です.