一个jsp里面,怎么实现另外两个jsp页面同时显示??
<%@pagecontentType="text/html;charset=GBK"%><html><head><title>用户管理页面</title><scriptt...
<%@ page contentType="text/html;charset=GBK" %>
<html>
<head><title>用户管理页面</title>
<script type="text/javascript" >
function mmupdate(){
document.getElementById("a").src="/member/account/mmupdate.jsp";
}
function zlupdate(){
document.getElementById("a").src="/member/account/zlupdate.jsp";
}
</script>
</head>
<body bgcolor="0088ff">
<table width="1024" height="auto" style="border:"0";" align="center" >
<tr>
<td width="210px">这个方放置栏目 </td>
<td><iframe id="a" style="height:500px; width: 100%;" src="/member/account/mmupdate.jsp"></iframe></td>
</tr>
</table>
</body>
</html> 展开
<html>
<head><title>用户管理页面</title>
<script type="text/javascript" >
function mmupdate(){
document.getElementById("a").src="/member/account/mmupdate.jsp";
}
function zlupdate(){
document.getElementById("a").src="/member/account/zlupdate.jsp";
}
</script>
</head>
<body bgcolor="0088ff">
<table width="1024" height="auto" style="border:"0";" align="center" >
<tr>
<td width="210px">这个方放置栏目 </td>
<td><iframe id="a" style="height:500px; width: 100%;" src="/member/account/mmupdate.jsp"></iframe></td>
</tr>
</table>
</body>
</html> 展开
6个回答
展开全部
两种方式:
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>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你写的用iframe就可以啊,或者用JSP的include标签,只不过要放到服务器上(比如tomcat)才能看到效果的,直接在本地用浏览器打开,它只是把你源代码现出来
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以使用jsp中include,分别是
< %@ include file=” ”% >
< jsp:include page=” ” flush=”true”/ >
< %@ include file=” ”% >
< jsp:include page=” ” flush=”true”/ >
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
显示页面: xianshi.jsp
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询