jsp的el表达式
2017-04-23 本文已影响11人
SmallTwo
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>