<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" %> <%-- <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %> --%> <%@ taglib uri="/struts-tags" prefix="s" %> <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %> <html> <head> <script type="text/javascript" src="/jslib/jquery-lib/jquery.1.6.js"></script> <title>[iskkeikxi]</title> </head> <body> <% String[] items = new String[3]; items[0] = "核心标签库"; items[1] = "国际化标签库"; items[2] = "SQL标签库"; //<c:set var="items" value="${items}" /> request.setAttribute("items", items); %> <a href="#"> 起初EL表达式只是为了方便存取数据而定义的一种语言语言,它只能使用在JSTL标签中,而不能在JSP中使用, 一直到JSP2.0版本发布之后,它才被正式纳入JSP规范之一。这时,它才直接被用于JSP中,只要安装了WEB服 务器支持SERVLET2.4/JSP2.0。 </a> 信息:${msg} <s:textfield></s:textfield> <c:forEach var="item" items="${items}"> <c:out value="${item}" /> </c:forEach> </body> </html>
?异常提示,在第24行的时候发生错误,说不接受任何表达式,后来在网上找到一个解决方案,说是版本不支持EL,所以把
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
改为:
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
就输出正常了。<!--帝国CMS,phome.net-->