程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> Jsp中Java腳本獲取EL表達式的值

Jsp中Java腳本獲取EL表達式的值

編輯:關於JSP

<%@ 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> 本網站總訪問人次:${ totalCount } <br/>  www.2cto.com 其中您的訪問次數:${ count } <br/> <c:set var="test" value="by value property"></c:set> <c:set var="test">by body</c:set> <%=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>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved