码迷,mamicode.com
首页 > Web开发 > 详细

jstl 使用

时间:2018-03-22 22:40:27      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:weight   tld   pos   except   cep   ssi   tty   exp   ref   

1、需要导入:

   1)jstl.jar

   2)standard.jar

引入:jsp相应的核心库:<%@taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>

其中preifix表示是什么标签。 url表示引用什么标签。会报错:org.apache.jasper.JasperException: /action/demo7.jsp (line: 15, column: 0) According to TLD or attribute directive in tag file, attribute test does not accept any expressions

需要更改为:http://java.sun.com/jstl/core_rt 即可解决。

格式:<c:if  test="el表达式(${xx})"> </c:if>

没有else判断,如果需要重新在写一个。

但是需要注意:引用http://java.sun.com/jstl/core

 1 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
 2 <%@taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
 3 <html>
 4 <head>
 5     <title>Title</title>
 6 </head>
 7 <body>
 8 <c:if test="${2>4}">2>4</c:if>
 9 <c:if test="${4>2}">4>2</c:if>
10 </body>
11 </html>

 

jstl 使用

标签:weight   tld   pos   except   cep   ssi   tty   exp   ref   

原文地址:https://www.cnblogs.com/evilliu/p/8626748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!