编写一个Jsp程序,使用<c:choose>,<c:when>和<C:otherwise>标签根据当前是星期几显示不同的提示信息
时间: 2024-05-25 22:17:35 浏览: 215
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>显示不同的提示信息</title>
</head>
<body>
<c:set var="dayOfWeek" value="${fn:toLowerCase(fn:substring(fn:substringAfter(now(),' '),0,3))}"/>
<c:choose>
<c:when test="${dayOfWeek eq 'mon'}">
<p>今天是星期一,开始新的一周!</p>
</c:when>
<c:when test="${dayOfWeek eq 'tue'}">
<p>今天是星期二,继续努力!</p>
</c:when>
<c:when test="${dayOfWeek eq 'wed'}">
<p>今天是星期三,周中加油!</p>
</c:when>
<c:when test="${dayOfWeek eq 'thu'}">
<p>今天是星期四,快到周末了!</p>
</c:when>
<c:when test="${dayOfWeek eq 'fri'}">
<p>今天是星期五,周末马上到来!</p>
</c:when>
<c:when test="${dayOfWeek eq 'sat'}">
<p>今天是星期六,放松一下吧!</p>
</c:when>
<c:otherwise>
<p>今天是星期天,祝你度过一个愉快的周末!</p>
</c:otherwise>
</c:choose>
</body>
</html>
阅读全文