[j2ee]使用标签时引用的taglib... 最基本的jstl...
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
< %@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
加点例子格式化日期的例子
1. <c:forEach items="{persons}" var="person" varStatus="status">
2. <span style="white-space: pre;"> </span><tr class="row{status.index%2+1}">
3. <span style="white-space: pre;"> </span><td class="td1"><input type="checkbox" name="ids" value="{person.userID}"></td>
4. <td>{person.username}</td>
5. <!-- <td>{person.sex}</td> -->
6. <td>
7. <c:if test="{person.sex==0}">未知</c:if>
8. <c:if test="{person.sex==1}">男</c:if>
9. <c:if test="{person.sex==2}">女</c:if>
10. </td>
11. <!-- <td>{person.birthday}</td> -->
12. <td>
13. <fmt:formatDate value="{person.birthday}" pattern="yyyy-MM-dd" type="Date"/>
14. </td>
15. <td>{person.ICard}</td>
16. </tr>
17. </c:forEach>
<c:forEach items="{persons}" var="person" varStatus="status">
<tr class="row{status.index%2+1}">
<td class="td1"><input type="checkbox" name="ids" value="{person.userID}"></td>
<td>{person.username}</td>
<!-- <td>{person.sex}</td> -->
<td>
<c:if test="{person.sex==0}">未知</c:if>
<c:if test="{person.sex==1}">男</c:if>
<c:if test="{person.sex==2}">女</c:if>
</td>
<!-- <td>{person.birthday}</td> -->
<td>
<fmt:formatDate value="{person.birthday}" pattern="yyyy-MM-dd" type="Date"/>
</td>
<td>{person.ICard}</td>
</tr>
</c:forEach>
--------------------------------------------------------------------------------------------------------------
springMVC中的form标签
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>