1. 程式人生 > >指令碼元素都包括哪些格式?都有什麼內容?

指令碼元素都包括哪些格式?都有什麼內容?

1)指令碼元素有三種格式:(視訊下載) (全部書籍)

   i)表示式:比如下面例子的:<%=++accessCount%>:轉換程式碼插入到轉成的Servlet的service方法。

   ii)Scriptlet:比如下面例子的: <% if (called() < 0.5) { %>  轉換程式碼插入到轉成的Servlet的service方法。

   iii)宣告:比如下面例子的:<%!private int accessCount = 0;%> 或 <%!double called() { return Math.random(); 轉換程式碼插入到轉成的Servlet的service方法之外。

2)指令:

比如page指令<%@ page contentType="控制整個頁面或者include指令<%@ include file="url"

詳情請見:http://www.mark-to-win.com/index.html?content=Jsp/jspUrl.html&chapter=Jsp/jsp3_web.html#ScriptingElementincludeWhat