–EL的应用场合
–EL 的基本语法
–EL中的算术运算符
–EL中的关系运算符
–EL中的逻辑运算符
–是一种简单的表达式语言
–能够访问变量、JavaBean的属性、集合和数组
–能够进行关系、逻辑和算术运算
–能够访问内建对象
–在标签的属性值中使用:
? <some:tag value=“${expr}” />
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'ELJSP.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<%request.setAttribute("URL","http://redking.blog.51cto.com"); %>
<c:out value="${URL }"></c:out><br>
<hr>
URL:<input type="text" value="${URL }"><br>
<hr>
<%request.setAttribute("username","michael"); %>
<c:if test="${username=='admin'}">
<input type="button" value="delete"/>
</c:if>
<c:if test="${username!='admin'}">
<input type="button" value="delete" disabled="disabled"/>
</c:if>
<br><hr>
UserName:${username }<br>
<hr>
<%
User u = new User();
u.setId(1);
u.setName("珊珊");
request.setAttribute("u",u);
%>
ID:${u.id }<br/>
Name:${u.name }<br/>
</body>
</html>
?访问变量
–${变量名称}
?访问maps、lists、arrays ,使用“[]”
–customerList[0]
– "+"
– "-"
– "*"
– "/"
– "%"
? EL中的关系运算符
–“== ” or “eq”
–“!=“ or “ne”
–“<“ or “lt”
–“>” or “gt”
–“<=“ or “le”
–“>=“ or “ge”
? EL中的逻辑运算符
–“&&” and “and”
–“||” and “or”
–“!” and “not”