标签:jsp页面时间获取
赋值
<%
Date date = new Date();
request.setAttribute("date", date);
%>
取值${date}
(1)JSP页面:
request.setAttribute("date",new Date());
(2) EL表达式 JSP 显示服务器上的时间:
${date}
(3)如果你仅仅只想在获得本地上的时间,你只要用js就可以获得了
<script>
var date =new Date();
//这里的date 是你打开jsp页面的本地时间,和服务器时间是有区别的
</script>
时间比较
<c:choose>
<c:when test="${date.before(s.startDateTime)}">
未开始
</c:when>
<c:when test="${date.after(s.endDateTime)}">
已结束
</c:when>
<c:otherwise>进行中</c:otherwise>
本文出自 “一无所有-天行者” 博客,请务必保留此出处http://tianxingzhe.blog.51cto.com/3390077/1675103
标签:jsp页面时间获取
原文地址:http://tianxingzhe.blog.51cto.com/3390077/1675103