发布网友 发布时间:2022-04-23 18:45
共1个回答
热心网友 时间:2023-10-13 13:24
<html> <head> <base href="<%=basePath%>"> <title>主框架界面</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <frameset rows="20%,*" frameborder="no"> <frame src="/top.jsp" name="top" noresize> <frameset cols="22%,*"> <frame src="/left.jsp" name="left" noresize> <frame src="/main.jsp" name="main" noresize"> </frameset> </frameset> <body> </body> </html> 给你解释下这个<frame src="/samw/main/top.jsp" name="top" noresize> src=""这个就是你的JSP文件路径了!name呢就是这个框架的名字以后你要加载页面进入这个框架><a href="/myJSP.jsp" target="main">我要加入的JSP</a> 比如这个链接直接用target="name"就可以了!
采纳哦