主頁 > 知識(shí)庫 > JSP中使用JSTL按不同條件輸出內(nèi)容的方法

JSP中使用JSTL按不同條件輸出內(nèi)容的方法

熱門標(biāo)簽:地圖標(biāo)注線上教程 高德地圖標(biāo)注樣式 杭州語音電銷機(jī)器人軟件 電銷機(jī)器人好賣么 北票市地圖標(biāo)注 電銷機(jī)器人是有一些什么技術(shù) 商洛電銷 杭州ai語音電銷機(jī)器人功能 四川保險(xiǎn)智能外呼系統(tǒng)商家

本文實(shí)例講述了JSP中使用JSTL按不同條件輸出內(nèi)容的方法。分享給大家供大家參考。具體如下:

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>

希望本文所述對(duì)大家的JSP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • JSP中一些JSTL核心標(biāo)簽用法總結(jié)
  • JSP入門教程之客戶端驗(yàn)證、常用輸出方式及JSTL基本用法
  • jsp 使用jstl實(shí)現(xiàn)翻頁實(shí)例代碼
  • jsp中使用jstl導(dǎo)入html亂碼問題解決方法
  • JSP和JSTL獲取服務(wù)器參數(shù)示例
  • 關(guān)于jsp頁面使用jstl的異常分析
  • JSP中常用的JSTL fmt(format格式化)標(biāo)簽用法整理

標(biāo)簽:青島 西藏 丹東 貴州 云浮 宿州 紅河 江西

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《JSP中使用JSTL按不同條件輸出內(nèi)容的方法》,本文關(guān)鍵詞  JSP,中,使用,JSTL,按,不同,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《JSP中使用JSTL按不同條件輸出內(nèi)容的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于JSP中使用JSTL按不同條件輸出內(nèi)容的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章