码迷,mamicode.com
首页 > Web开发 > 详细

jsp中jstl标签的类似 if - else 语句 的语法

时间:2019-11-15 22:13:47      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:equal   body   sts   width   参数   span   png   param   path   

在jsp中引入jstl的标签库和函数库

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

1. jsp中传递参数,经过action,存储到request中

<area shape="poly" coords="680,111,765,82,811,196,724,223" 

 href="${pageContext.request.contextPath}/news/queryNews.do?artType=9&new=3" alt="摄影" title="摄影" />

2. java代码中有

String newFlag=request.getParameter("newFlag");
  if(newFlag!=null && !newFlag.equals("")){
   request.setAttribute("newFlag",newFlag);
  }

3. jsp中的类似  if - else 语句 的语法

<c:choose>
   <c:when test="${requestScope.newFlag== ‘1‘ || requestScope.newFlag== ‘2‘ ||requestScope.newFlag== ‘3‘}"> 
         作品名称: ${star.class_}<br />
         作品编号: ${star.raceNum}<br />       
   </c:when>
   <c:otherwise>
     班级: ${star.class_}<br />
     参赛编号: ${star.raceNum}<br />
   </c:otherwise>
</c:choose>

 

1. 如果在jsp中传递参数,没有经过action ,直接跳转到jsp页面

<a href="${pageContext.request.contextPath}/reg.jsp?newFlag=${requestScope.newFlag}">

<img src="${pageContext.request.contextPath}/images/reg.png" width="76" height="53" alt="我要注册" title="我要注册" />

</a>

2. 在jsp中取得jsp传过来的参数,此时要使用${param.newFlag}

<c:choose>
   <c:when test="${param.newFlag== ‘1‘ || param.newFlag== ‘2‘ ||param.newFlag== ‘3‘}"> 
    <th>作品名称<font color="Red">*</font>:</th>      
   </c:when>
   <c:otherwise>
   <th>班级<font color="Red">*</font>:</th>
   </c:otherwise>
</c:choose>

jsp中jstl标签的类似 if - else 语句 的语法

标签:equal   body   sts   width   参数   span   png   param   path   

原文地址:https://www.cnblogs.com/Fooo/p/11869758.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!