You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
501 B
22 lines
501 B
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>时间问候</title>
|
|
</head>
|
|
<body>
|
|
<c:set var="hour" value="${pageContext.request.time / 3600000 % 24}" />
|
|
<c:choose>
|
|
<c:when test="${hour >= 0 && hour < 12}">
|
|
<h1>上午好!</h1>
|
|
</c:when>
|
|
<c:when test="${hour >= 12 && hour < 18}">
|
|
<h1>下午好!</h1>
|
|
</c:when>
|
|
<c:otherwise>
|
|
<h1>晚上好!</h1>
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</body>
|
|
</html>
|