日期:2014-05-16  浏览次数:20857 次

紧急求助,插入框架的问题~~~在线等啊~~~~~~~~~
<html>
<head>
</head>
<title>管理中心</title>

<frameset framespacing="0" id=frameset border="false" cols="200,22,*" frameborder="0">
  <frame src="left.html" id="left" name="left" scrolling="yes" target="main"  >
  <frame src="leftFrame.htm" name="leftFrame" id="leftFrame" scrolling="NO" noresize >
  <frame src="1.html" name="right" id="main" scrolling="yes" marginwidth="0" marginheight="0" >
</frameset>
  <noframes>
<body bgcolor="#efefef" topmargin="0" leftmargin="0">
  <p>This page uses frames, but your browser doesn't support them.</p>
  </body>
  </noframes>
</html>

我这个后台的框架,想在最顶部横的插入一个top框架得如何弄?
我插入了总是错位了。。。求高手帮忙弄下。。。。搞得真是没辙了!!!!!!!!!!

------解决方案--------------------
你安个dreamweaver它里面有模板,自动给你生成代码。
------解决方案--------------------

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<frameset rows="80,*" cols="*" frameborder="no" border="0" framespacing="0">
  <frame src="Untitled-1.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
  <frameset cols="80,*" frameborder="no" border="0" framespacing="0">
    <frame src="7.html" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame" />
    <frame src="Untitled-17.html" name="mainFrame" id="mainFrame" title="mainFrame" />
  </frameset>
</frameset>
<noframes><body>
</body></noframes>
</html>


------解决方案--------------------
不行哦。我得按我帖子里的增加一个上去才可以。

re:
是想在frame 的页面中用js 为frameset 增加一个frame?