• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    JSP中使用JSTL按不同条件输出内容的方法

    本文实例讲述了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验证码简单生成方法
    下一篇:JSP实现用于自动生成表单标签html代码的自定义表单标签
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

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