首页 > Web开发 > 详细

jstl 使用

时间:2018-03-22 21:58:49      阅读:205      评论:0      收藏:0      [点我收藏+]

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 使用

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!