include 指令用于在 JSP 页面引入其它内容,可以是 JSP 文件、html 文件和文本文件等,相当于把文件的内容复制到 JSP 页面。引入的文件和 JSP 页面同时编译运行。
使用 include 指令有以下优点:
include 的语法如下:
<%@ include file="URL" %>
其中,file 指定需要引入文件的相对路径。
可以在页面的任何位置编写 include 指令。
例 1
在 index.jsp 页面使用 include 指令引入 head.jsp。head.jsp 代码如下:
header内容
index.jsp 代码如下:
编程帮(http://www.biancheng.net)