web开发学习笔记(6):<c:if>标签的使用

算术运算符 + 、 - 、 * 、 / (或 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>

其他的运算符大同小异。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。