c:if标签

来源:互联网 发布:-23的源码 编辑:程序博客网 时间:2024/05/10 14:59

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

<%

  Date d=new Date();
  int hours=d.getHours();
  session.setAttribute("h",hours);
   %>

    if标签
    <c:if test="${sessionScope.h<12}">
      小时:${h },  上午好
    </c:if><br/>
    
   <c:if test="${sessionScope.h ge 12 && h<=14}">
  中午好
   </c:if>
   
   <c:if test="${sessionScope.h >14}">
   下午好
   </c:if>
0 0
原创粉丝点击