<frameset rows="高度1,高度2,..."
cols="宽度1,宽度2,..."> <frame src="URL1" name="NAME1"> <frame src="URL2" name="NAME2"> ... <frame src="URLn" name="NAMEn"> <noframes> <body> ... </body> </noframes> </frameset> |
<frameset rows="高度1,高度2,高度3"> <frame src="内容1.htm"> <frame src="内容2.htm"> <frame src="内容3.htm"> </frameset> s10_01.htm |
| ||||
<frameset cols="宽度1,宽度2,宽度3"> <frame src="内容1.htm"> <frame src="内容2.htm"> <frame src="内容3.htm"> </frameset> s10_02.htm |
| ||||
<frameset cols="宽度1,宽度2"> <frame src="内容1.htm"> <frameset rows="高度1,高度2"> <frame src="内容2.htm"> <frame src="内容3.htm"> </frameset> </frameset> s10_03.htm |
| ||||
<frameset rows="高度1,高度2"
cols="宽度1,宽度2"> <frame src="内容1.htm"> <frame src="内容2.htm"> <frame src="内容3.htm"> <frame src="内容4.htm"> </frameset> s10_04.htm |
|
<frameset cols="宽度1,宽度2" frameborder=5> <frame src="内容1.htm"> <frameset rows="高度1,高度2" frameborder=9> <frame src="内容2.htm"> <frame src="内容3.htm"> </frameset> </frameset> |
| |||
<frameset cols="宽度1,宽度2" frameborder=0> <frame src="内容1.htm"> <frameset rows="高度1,高度2"> <frame src="内容2.htm"> <frame src="内容3.htm"> </frameset> </frameset> s10_05.htm |
|
<frameset cols="宽度1,宽度2" framespacing=5> <frame src="内容1.htm"> <frameset rows="高度1,高度2" framespacing=5> <frame src="内容2.htm"> <frame src="内容3.htm"> </frameset> </frameset> s10_06.htm |
|
<frameset rows=宽度1,宽度2 > <frame src="内容1.htm" scrolling="no" > <frameset cols=高度1,高度2> <frame src="内容2.htm" scrolling="auto"> <frame src="内容3.htm" scrolling="yes"> </frameset> </frameset> s10_07.htm |
<frameset rows=宽度1,宽度2 noresize> <frame src="内容1.htm"> <frameset cols=高度1,高度2> <frame src="内容2.htm"> <frame src="内容3.htm"> </frameset> </frameset> s10_08.htm |
<frameset cols="宽度1,宽度2,宽度3"> <frame src="内容1.htm" marginwidth=10> <frame src="内容2.htm" marginwidth=10 marginheight=10> <frame src="内容3.htm" marginheight=10> </frameset> s10_09.htm |
|
<a href="URL"> | 当前框架显示 |
<a href="URL" target="框架名"> | 指定框架内显示 |
<a href="URL" target="_blank"> | 重新打开一个窗口来显示 |
<a href="URL" target="_self"> | 当前框架显示 |
<a href="URL" target="_parent"> | 父窗口内显示(即存放框架的窗口,这时当前框架消失) |
<a href="URL" target="_top"> | 框架没有嵌套时和_parent相同。有嵌套时即框架中的页面本身又是框架,这时所有框架消失,并显示所连接的页面。 |
width | frame的宽度(用像素picsel或百分比%表示) |
height | frame的高度(用像素picsel或百分比%表示) |
marginwidth | frame内的左右边界(Margin)(用像素picsel表示) |
marginheight | frame内的上下边界(Margin)(用像素picsel表示) |
scrolling | 滚动条(auto:自动/yes:始终有/no:始终无) |
frameborder | frame的边框表示(1:有/0:无) |
align | 页面中的位置(左右:left/right,上下:top/middle/bottom) |