程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> frameset布局時frame中src路徑的頁面沒有加載的解決方法

frameset布局時frame中src路徑的頁面沒有加載的解決方法

編輯:關於JSP
解決方法:將頁面的body節點去掉,錯誤代碼如下
復制代碼 代碼如下:
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<base href="<%=basePath%>">
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>主頁</title>
</head>
<body>
<frameset rows="15%,70%,15%" frameborder="yes" >
<frame scrolling="auto" src="IndexTop.jsp"></frame>
<frame scrolling="auto" src="IndexMain.jsp"></frame>
<frame scrolling="auto" src="IndexBottom.jsp"></frame>
</frameset>
</body>
</html>

由於frameset是一種框架結構,將整個頁面占據掉,不要用body進行布局
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved