JSTL使用

31 篇文章 2 订阅

1.下载JSTL

点击打开链接  下载

2.将jar包放到WEB-INF目录下

3.声明

<%@ taglib prefix="prefix" uri="uri"%>

例如:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

4.使用

例:<c:if test="${requestScope.errors !=null}">


应用:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"

    pageEncoding="ISO-8859-1"%>
<%@ 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=ISO-8859-1" charset="utf-8">
<title>Add a product</title>
</head>
<body>
    <!-- 错误处理部分 -->
     <div id="global">
       <c:if test="${requestScope.errors !=null}">
           <h5>Error(s)!</h5>
           <ul>
           <c:forEach var="error" items="${requestScope.errors}">
             <li>${error}</li>
           </c:forEach>
           </ul>
       </c:if>
    </div>
    <div>
      <form action="saved1">
        <fieldset>
        <legend>Add a product</legend>
        <table>
           <!-- 名称填写表单 -->
           <tr>
           <td><label>Product name:</label></td>
           <td><input name="name" type="text" /></td>
           </tr>
           <!-- 产品描述 -->
           <tr>
           <td><label>Product description:</label></td>
           <td><input name="description" type="text"/></td>
           </tr>
           
           <!-- 产品价格规定 -->
           <tr>
           <td><label>Product price:</label></td>
           <td><input name="price" type="text"></td>
           </tr>
           
        </table>
        <input type="reset"/>
        <input type="submit"/>
        </fieldset>
      </form>
    </div>
</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值