JSP include能包含html页面吗?
下文笔者将通过示例的方式讲述JSP包含html页面的方法分享,如下所示:
实现思路: 直接使用include指令包含html所在的相对路径即可实现"include包含html页面的功能"例:
main.html <%@page contentType="text/html;charset=gb2312"%> <h2 style="font-family:arial;color:red;font-size:25px;text-align:center"> 静态包含的标题(HTML) -来自main.html </h2> test.jsp <%@page contentType="text/html;charset=gb2312"%> <html> <head> <title>静态包含</title> </head> <body > <%@include file="main.html"%><!--静态包含--> <hr /> 我来自test.jsp </body> </html>
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。