frame 分框 求助

来源:百度知道 编辑:UC知道 时间:2024/09/22 15:44:54
我想用frame建立一个框架
a
b c
d
请问如何制作??

<frameset rows="80,*,80" frameborder="no" border="0" framespacing="0">
<frame src="a.htm" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" />
<frameset rows="*" cols="272,*" framespacing="0" frameborder="no" border="0">
<frame src="b.htm" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" />
<frame src="c.htm" name="mainFrame" id="mainFrame" />
</frameset>
<frame src="d.htm" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" />
</frameset>

其中 a.htm b.htm c.htm d.htm 中分别存放a b c d的内容