主页 > 知识库 > JSP中使用JSTL按不同条件输出内容的方法

JSP中使用JSTL按不同条件输出内容的方法

热门标签:Linux服务器 阿里云 Mysql连接数设置 银行业务 服务器配置 电子围栏 团购网站 科大讯飞语音识别系统

本文实例讲述了JSP中使用JSTL按不同条件输出内容的方法。分享给大家供大家参考。具体如下:

ConditionalContentJSTL.jsp页面:

%@ page language="java" contentType="text/html;charset=UTF-8" %>
%@ taglib uri="/WEB-INF/tld/c-rt.tld" prefix="c-rt" %>
html>
head>
 title>Java Code Geeks Snippets - Conditional Content with JSTL in JSP Page/title>
/head>
body>
 %-- if condition --%>
 c-rt:if test='${param.myparam1 == "myvalue1"}'>
  This is printed if parameter "myparam1" equals "myvalue1" /br>
 /c-rt:if>
 %-- if/else condition --%>
 c-rt:choose>
  c-rt:when test='${param.myparam2 == "myvalue2"}'>
   This is printed if parameter "myparam2" equals "myvalue2" /br>
  /c-rt:when>
  c-rt:otherwise>
   This is printed if parameter "myparam2" DOES NOT equal "myvalue2" /br>
  /c-rt:otherwise>
 /c-rt:choose>
 %-- multiple conditions --%>
 c-rt:choose>
  c-rt:when test='${param.myparam3 == "0"}'>
   This is printed if parameter "myparam1" equals 0 /br>
  /c-rt:when>
  c-rt:when test='${param.myparam3 == "1"}'>
   This is printed if parameter "myparam1" equals 1 /br>
  /c-rt:when>
  c-rt:otherwise>
   This is printed for any other value of the parameter /br>
  /c-rt:otherwise>
 /c-rt:choose>
/body>

希望本文所述对大家的JSP程序设计有所帮助。

您可能感兴趣的文章:
  • JSP中一些JSTL核心标签用法总结
  • JSP入门教程之客户端验证、常用输出方式及JSTL基本用法
  • jsp 使用jstl实现翻页实例代码
  • jsp中使用jstl导入html乱码问题解决方法
  • JSP和JSTL获取服务器参数示例
  • 关于jsp页面使用jstl的异常分析
  • JSP中常用的JSTL fmt(format格式化)标签用法整理

标签:江苏 大理 广元 衡水 枣庄 蚌埠 衢州 萍乡

巨人网络通讯声明:本文标题《JSP中使用JSTL按不同条件输出内容的方法》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266