el:el表达式可以输出定义在域对象中的变量或者表达式
$()
<%
pageContext.setAttribute("name", "xiaoer");
pageContext.setAttribute("name", "xiaoer2", PageContext.REQUEST_SCOPE);
pageContext.setAttribute("person", new Person("xiaoer",20));
%>
<body>
${name};
${requestScope.name}
${person.age}
</body>
网友评论