HTML页面嵌入动态元素,简单
类别: JSP教程
<%@ taglib prefix="c" uri=http://java.sun.com/jstl/core %>
<html>
<body bgcolor="white">
<jsp:userBean id="clock" class="java.util.Date" />
<c:choose>
<c:when test="${clock.hours<12}">
<h1> Good Morning! </h1>
</c:when>
<c:when test="${clock.hours<18}">
<h1> Good day! </h1>
</c:when>
<c:otherwise>
<h1> Good evening! </h1>
</c:otherwise>
</c:choose>
Welcome to our site,open 24 hours a day.
</body>
</html>
- 上一篇: 初学者如何开发出高质量的J2EE系统
- 下一篇: 手低眼高 初学者学习Hibernate的方法
-= 资 源 教 程 =-
文 章 搜 索