JSP指令-Include指令

include指令用于包含任何资源的内容,它可以是JSP文件,HTML文件或文本文件。include指令在页面转换时包含所包含资源的原始内容(注意:因为JSP页面仅被转换一次,因此最好包含静态资源)。

1 include指令的优点

代码可重用性

2 include指令的语法

<%@ include file="资源名称" %>  

3 include指令的示例

在下面的示例中,我们使用include指令包含header.html文件的内容。

3.1 编写header.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>header page</title>
</head>
<body>
this is header page!
</body>
</html>

3.2 编写index.jsp

<%@ page contentType="text/html;charset=utf-8" %>
<html>
<html>
<head>
    <meta charset="utf-8">
    <title>一点教程网-include指令的示例</title>
</head>
<body>

<%@ include file="header.html" %>

<hr/>

this is index page!

</body>
</html>

3.3 运行测试

热门文章

优秀文章