没有嵌套的c:if
带有状态的c:if var关键字
<tr>
<c:if test="${j.isenabled}" var="t">
<th><span class="glyphicon glyphicon-ok" aria-hidden="ture"></span></th>
</c:if>
<c:if test="${!t}">
<th><span class="glyphicon glyphicon-remove" aria-hidden="ture"></span></th>
</c:if>
</tr>
其中的span标签里面的class是bootstrap自带的图标
上面的判断流程是如果j点isenabled为真(标记这个状态为t)就执行下面的代码
非t就是假
写在input里面的c:if
input是单标签,最后面的斜杠可以不写
<input type="radio" name="positiontype" id="workingTime" value="1"
<c:if test="${condition.positiontype==1 }">
checked="checked"
</c:if>
/>
<label class="radio-inline">
<input type="radio" name="positiontype" id="positiontype" value="1"
<c:if test="${ job1.positiontype==1 }">
checked = "checked"
</c:if>
>全职
</label>
<label class="radio-inline">
<input type="radio" name="positiontype" id="positiontype" value="0"
<c:if test="${ job1.positiontype==0 }">
checked = "checked"
</c:if>
>兼职
</label>