jsp 怎么实现页面的共用
作者:互联网
两种方式:
1、通过<%@include file=""%>方式把两个jsp页面放入同一个页面中
<body>
<%@include file="页面1.jsp"%>
<%@include file="页面2.jsp"%>
</body>
2、通过iframe方式,把2个页面嵌入到同一个jsp页面中
<body>
<iframe src='页面1.jsp'/>
<iframe src='页面2.jsp'/>
</body>
https://zhidao.baidu.com/question/273131708.html
标签:baidu,同一个,方式,question,jsp,共用,页面 来源: https://blog.csdn.net/qq_40711092/article/details/121199458