洛维奇


2016年3月8日 #

使用<c:if>标签处理页面数据

摘要: 使用${feeList.feeType}来取值的时候,因为定义的是数值,刚好看到<c:if>标签的使用,套用代码如下 <td> <c:if test="${feeList.feeType==1}">***</c:if> <c:if test="${feeList.feeType==2}">***</ 阅读全文

posted @ 2016-03-08 18:07 洛维奇 阅读(1356) 评论(0) 推荐(0)

项目中操作Hibernate对象Criteria进行查询

摘要: 待续... 阅读全文

posted @ 2016-03-08 17:35 洛维奇 阅读(205) 评论(0) 推荐(0)

<c:if>标签的使用-流程控制标签

摘要: <c:if>标签必须要有test属性,${ }表达式为ture,则执行body内容;否则不执行。 原始代码: <c:if test="${all == 1}"> //body-start <th>公告结束时间</th> <th>公告状态</th> //body-end </c:if> <c:if>还 阅读全文

posted @ 2016-03-08 15:48 洛维奇 阅读(639) 评论(0) 推荐(0)

导航