HTML页面嵌入动态元素---简单

来源:互联网 发布:网络安全工程师自学 编辑:程序博客网 时间:2024/06/11 20:08

<%@ 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>