J2EE(04) 頁面通用部分共用辦法 jsp:include 使用__js

來源:互聯網
上載者:User

設計頁面,頭部,導航條,foot,所有頁面基本一致,不要在每個頁面進行重複設計,而採用將通用部分存為一個一個的jsp頁面,使用的頁面只需要引用的模式

引入jsp頁面有2種方式

1. <%@ include file="included.html" %> 這種稱為JSP include 偽指令

<![CDATA[<%@ page language="java" contentType="text/html" %><html>     <head>      <title>JSP include element test</title>     </head>     <body>      This content is statically in the main JSP file.<br />      <%@ include file="included.html" %>     </body></html>]]>
這種方式是較老的方式,缺點是不能及時重新整理,不能傳遞參數,因此,這個方法可以不要使用


2. jsp:include 標記 

<![CDATA[<%@ page language="java" contentType="text/html" %><html>     <head>      <title>JSP include element test</title>     </head>     <body>      This content is statically in the main JSP file.<br />      <%@ include file="included.html" %>     </body></html>]]>

可以傳遞參數:

<jsp:include page="header.jsp" flush="true">  <jsp:param name="pageTitle" value="newInstance.com"/>  <jsp:param name="pageSlogan" value=" " /></jsp:include>

header.jsp裡面可以直接取出參數:

<%=request.getParameter("pageTitle") %>


引用頁面需要注意的:

被應用的頁面,不能夠包含html body等標記,可以引用css

舉例頁面:

<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<link href="css/header.css" rel="stylesheet" type="text/css" />
<div id="maindiv">
<%=request.getParameter("pageTitle") %>
</div>




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.