网站后台管理界面(关于frame和iframe)综合网上
这里是第一个页面:test.html
<!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=gb2312" />
<title>无标题文档</title>
</head>
<frameset rows="*" cols="431,*" name="frame1">
<frame src="testleft.html" >
<frame src="testright.html">
</frameset>
<noframes><body>
</body>
</noframes></html>
注:
如果这里改写为<frame src="testleft.html" noresize="noresize">将不能移动左边的frame
<frameset rows="*" cols="431,*" name="frame1"> 这里的row,cols的设置,会使得左边的frame大小出现左边和右边的滚动条,很方便.
下面是左边的frame的 testleft.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body bgcolor="#6492D0">
<div align="center" id="Pre_Link" name="Pre_Link"><img id="Pre_Img" name="Pre_Img" border='0' src="qianlima.jpg" width="150" height="67" /></div>
<div align="center" style="font-size:12px;line-height: 20px;"><table width="80%" border="0" cellpadding="0" cellspacing="0"><tr><td align="left">欢迎:wangdo </td><td align="right"><a href="/member/logonout.asp?form=http://community.csdn.net/" target="_parent">注销</a></td></tr></table></div>
<iframe src="iframeleft.html" width="90%" height=480px frameborder="1" runat="server" style="no">
</body>
</html>
注:
其中的<iframe src="iframeleft.html" width="90%" height=480px frameborder="1" runat="server" style="no">
是新加入的iframe
这里是iframeleft.html
<body width=100px bgcolor="#00FF00">
<table width="200" border="0">
<tr>
<td><a href="A.html" target="B">这是第一页</a></td>
</tr>
<tr>
<td><a href="b.html" target="B">这是第二页</a></td>
</tr>
<tr>
<td><a href="C.html" target="B">这是第三页</a></td>
</tr>
<tr>
<td><a href="D.html" target="B">这是每四页</a></td>
</tr>
</table>
</body>
下面的是右边的frame
<body>
<iframe name="B" src="iframeright.html" width="80%" height="100%" scrolling="yes" frameborder="0" runat="server">
</body>
</noframes></html>
注:这里的<iframe name="B" src="iframeright.html" width="80%" height="100%" scrolling="yes" frameborder="0" runat="server">中的 name="B"是和iframeleft.html中的这些有对应" <td><a href="A.html" target="B">这是第一页</a></td>
浙公网安备 33010602011771号