首页 > 开发 > 综合 > 正文

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

2024-07-21 02:15:12
字体:
来源:转载
供稿:网友

商业源码热门下载www.html.org.cn

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表