使用<c:if>标签处理页面数据
使用${feeList.feeType}来取值的时候,因为定义的是数值,刚好看到<c:if>标签的使用,套用代码如下
<td>
<c:if test="${feeList.feeType==1}">***</c:if>
<c:if test="${feeList.feeType==2}">***</c:if>
<c:if test="${feeList.feeType==3}">***</c:if>
...
</td>
未完待续...
使用${feeList.feeType}来取值的时候,因为定义的是数值,刚好看到<c:if>标签的使用,套用代码如下
<td>
<c:if test="${feeList.feeType==1}">***</c:if>
<c:if test="${feeList.feeType==2}">***</c:if>
<c:if test="${feeList.feeType==3}">***</c:if>
...
</td>
未完待续...