if-else的使用
<td><c:if test="${t.SEX eq '1'}"> 男</c:if>
<c:if test="${t.SEX eq '0'}"> 女</c:if></td>
今天在项目中想用if-else的用法可是怎么搞都报jsp解析错误,看了一下原因说是使用了不合法的大于、小于号找了半天也没有找到,原来是自己的el表达式搞错了!
<c:choose>
<c:when test="${var.index % 2 == 0}">
*
</c:when>
<c:otherwise>
*
</c:otherwise>
</c:choose>