Java script in Jsp to get the value of EL expression


<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<c:set var="totalCount" value="${ totalCount + 1 }" scope="application"></c:set>
<c:set var="count" value="${ count + 1 }" scope="session"></c:set><c:set var="test">by body</c:set><c:set var="test" value="by value property"></c:set >where your number of visits: ${ count } <br/>
The total number of visitors to this website: ${ totalCount } <br/>



<%=session.getAttribute("count")%> /*session.getAttribute('count')与var="count" scope="session"对应*/
<%=application.getAttribute("totalCount")%> /*application.getAttribute("totalCount") 与var="totalCount" scope="application"对应*/
<br/>
<br/>
<br/>
<br/>
</body>
</html>

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324213863&siteId=291194637