zoukankan      html  css  js  c++  java
  • JSTL

    a.使用步骤(核心标签库)
          第一步:导入jar(jstl-xxx,standard.jar)    
          第二步:jsp页面引入标签库
                 <%@ taglib uri="http://java.sun.com/jsp/jst1/core" prefix="c"%>
          第三步:使用<c:标签名/>
     b.核心标签库标签
          通用标签:setoutremove
          条件标签:ifchoose
          迭代标签:forEach

    c. set标签

    <c:set va”变量名” value=”值” scope=”作用范围”/>

    <c:set traget=”对象名” property=”属性名” value=”值”/>

    d. out标签

    <c:out value=”${变量名}” default=”默认值” escapeXml=”Y”/>

    e.removel标签

    <c:rmovel var=”变量名”/>

    f. if标签

    <c:if test=”判断条件” var=”存储判断结果变量” scope=”作用范围”>

    </c:if>

    g. choose标签(类似javaif...else if...else

    <c:choose>

    <c:when test=”判断条件”></c:when>

    ...

    <c:otherwise></c:otherwise>

    </c:choose>

    h:forEach标签

    <c:forEach items=”${集合变量}” var=”迭代当前对象变量”

    Begin=”开始下标” end=”结束下标” step=”进步值”

    statusValue=”当前对象的信息”/>

    </c:forEach>

     运行结果:

     1 <%@page import="com.entity.Users"%>
     2 <%@page import="org.apache.catalina.User"%>
     3 <%@page import="java.util.Map"%>
     4 <%@page import="java.util.HashMap"%>
     5 <%@page import="java.util.ArrayList"%>
     6 <%@page import="java.util.List"%>
     7 <%@ page language="java" contentType="text/html; charset=UTF-8"
     8     pageEncoding="UTF-8"%>
     9 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    10 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    11 <html>
    12 <head>
    13 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    14 <title>Insert title here</title>
    15 </head>
    16 <body>
    17 <%--     <c:set var="index" value="8" scope="request"></c:set> --%>
    18 <%--     ${index} --%>
    19 <%--     <c:remove var="index"/> --%>
    20 <%--     ${index} --%>
    21     <c:set var="index" value="8" scope="request"></c:set>
    22     <c:remove var="index"/>
    23     <c:if test="${empty index}" var="name" scope="request">
    24         没有值
    25     </c:if>
    26     <c:if test="${not empty index}">
    27         ${index}
    28     </c:if>
    29     <br/>
    30     ${name}
    31     <br/>
    32     
    33     <!-- 1打印A、2打印B、否则打印C -->
    34     <c:set var="index" value="2" scope="request"></c:set>
    35     <c:choose>
    36         <c:when test="${index==1}">
    37             A
    38         </c:when>
    39         <c:when test="${index==2}">
    40             B
    41         </c:when>
    42         <c:otherwise>
    43             C
    44         </c:otherwise>
    45     </c:choose>
    46     <br/>
    47     
    48     <%
    49         Users u1 = new Users();
    50         u1.setId(1);
    51         u1.setName("zs1");
    52         Users u2 = new Users();
    53         u2.setId(2);
    54         u2.setName("zs2");
    55         Users u3 = new Users();
    56         u3.setId(3);
    57         u3.setName("zs3");
    58         List<Users> us = new ArrayList<Users>();
    59         us.add(u1);
    60         us.add(u2);
    61         us.add(u3);
    62         request.setAttribute("us",us);
    63     %>
    64     <c:forEach items="${us}" var="uu">
    65         ${uu.id}&nbsp;&nbsp;&nbsp;${uu.name}<br/>
    66     </c:forEach>
    67     <c:forEach begin="0" end="10" step="2">
    68         ${"*"}
    69     </c:forEach>
    70     <br/>
    71     <%
    72         Map<String,String> map = new HashMap<String,String>();
    73         map.put("a","A");
    74         map.put("b","B");
    75         map.put("c","C");
    76         request.setAttribute("map",map);
    77     %>
    78     <c:forEach items="${map}" var="en">
    79         ${en.key}
    80         ${en.value}<br/>
    81     </c:forEach>
    82 </body>
    83 </html>
    示例
  • 相关阅读:
    国人常用密码TOP100 FROM THISITE
    paip.提升用户体验注册异常记录
    paip.提升用户体验与提升安全性记住密码
    paip.技术重要还是管理重要还是创意重要
    paip.软件及网站项目开发效率低下的思索与改进
    paip.接入支付接口功能流程总结
    paip.项目开发效率提升之思索
    paip.activex控件在WEB中使用流程与工具
    paip..提升安全性增加自毁功能
    paip.提升用户检验取回密码忘记密码提醒
  • 原文地址:https://www.cnblogs.com/yang82/p/7455086.html
Copyright © 2011-2022 走看看