JSTL簡單入門學習執行個體

來源:互聯網
上載者:User

標籤:www   vbscript   artifact   ansi   建立   lines   varname   head   version   

Maven依賴:

        <dependency>            <groupId>javax.servlet</groupId>            <artifactId>jstl</artifactId>            <version>1.2</version>        </dependency>

建立頁面index.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>首頁</title></head><body>c:set標籤:<c:set var="varName" value="foo" scope="session"/><br>c:out標籤:<c:out value="${varName}" default="default value"/><br>if標籤:<c:if test="${varName==‘foo‘}">if輸出</c:if><br>if-else標籤:<c:choose><c:when test="${empty param.username}">no user</c:when><c:when test="${1==1}">invalid section</c:when><c:otherwise>otherwise</c:otherwise></c:choose><br>foreach標籤:<c:forEach var="i" begin="1" end="3">item is: <c:out value="${i}"/></c:forEach><br>c:forTokens標籤:<c:forTokens items="Zara,nuha,roshy" delims="," var="name">   <c:out value="${name}"/></c:forTokens></body></html> 

頁面輸出:

c:set標籤:c:out標籤:fooif標籤: if輸出 if-else標籤: no user foreach標籤: item is: 1 item is: 2 item is: 3 c:forTokens標籤: Zara nuha roshy

JSTL簡單入門學習執行個體

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.