标签:des style blog http color 使用
通过使用框架,你可以在同一个浏览器窗口中显示不止一个页面。
<html> <frameset cols="25%,50%,25%"> <frame src="../example/html/frame_a.html" tppabs="http://www.w3school.com.cn/example/html/frame_a.html"> <frame src="../example/html/frame_b.html" tppabs="http://www.w3school.com.cn/example/html/frame_b.html"> <frame src="../example/html/frame_c.html" tppabs="http://www.w3school.com.cn/example/html/frame_c.html"> </frameset> </html>
<html> <frameset rows="25%,50%,25%"> <frame src="../example/html/frame_a.html" tppabs="http://www.w3school.com.cn/example/html/frame_a.html"> <frame src="../example/html/frame_b.html" tppabs="http://www.w3school.com.cn/example/html/frame_b.html"> <frame src="../example/html/frame_c.html" tppabs="http://www.w3school.com.cn/example/html/frame_c.html"> </frameset> </html>
通过使用框架,你可以在同一个浏览器窗口中显示不止一个页面。每份HTML文档称为一个框架,并且每个框架都独立于其他的框架。
使用框架的坏处:
编者注:frameset 标签也被某些文章和书籍译为框架集。
Frame 标签定义了放置在每个框架中的 HTML 文档。
在下面的这个例子中,我们设置了一个两列的框架集。第一列被设置为占据浏览器窗口的 25%。第二列被设置为占据浏览器窗口的 75%。HTML 文档 "frame_a.htm" 被置于第一个列中,而 HTML 文档 "frame_b.htm" 被置于第二个列中:
<frameset cols="25%,75%"> <frame src="frame_a.htm"> <frame src="frame_b.htm"> </frameset>
假如一个框架有可见边框,用户可以拖动边框来改变它的大小。为了避免这种情况发生,可以在 <frame> 标签中加入:noresize="noresize"。
为不支持框架的浏览器添加 <noframes> 标签。
重要提示:不能将 <body></body> 标签与 <frameset></frameset> 标签同时使用!不过,假如你添加包含一段文本的 <noframes> 标签,就必须将这段文字嵌套于 <body></body> 标签内。(在下面的第一个实例中,可以查看它是如何实现的。)
<html> <frameset cols="25%,50%,25%"> <frame src="../example/html/frame_a.html" tppabs="http://www.w3school.com.cn/example/html/frame_a.html"> <frame src="../example/html/frame_b.html" tppabs="http://www.w3school.com.cn/example/html/frame_b.html"> <frame src="../example/html/frame_c.html" tppabs="http://www.w3school.com.cn/example/html/frame_c.html"> <noframes> <body>您的浏览器无法处理框架!</body> </noframes> </frameset> </html>
<html> <frameset rows="50%,50%"> <frame src="../example/html/frame_a.html" tppabs="http://www.w3school.com.cn/example/html/frame_a.html"> <frameset cols="25%,75%"> <frame src="../example/html/frame_b.html" tppabs="http://www.w3school.com.cn/example/html/frame_b.html"> <frame src="../example/html/frame_c.html" tppabs="http://www.w3school.com.cn/example/html/frame_c.html"> </frameset> </frameset> </html>
<html> <frameset rows="50%,50%"> <frame noresize="noresize" src="../example/html/frame_a.html" tppabs="http://www.w3school.com.cn/example/html/frame_a.html"> <frameset cols="25%,75%"> <frame noresize="noresize" src="../example/html/frame_b.html" tppabs="http://www.w3school.com.cn/example/html/frame_b.html"> <frame noresize="noresize" src="../example/html/frame_c.html" tppabs="http://www.w3school.com.cn/example/html/frame_c.html"> </frameset> </frameset> </html>
<html> <frameset cols="120,*"> <frame src="../example/html/html_contents.html" tppabs="http://www.w3school.com.cn/example/html/html_contents.html"> <frame src="../example/html/frame_a.html" tppabs="http://www.w3school.com.cn/example/html/frame_a.html" name="showframe"> </frameset> </html>
<html> <body> <iframe src="../i/eg_landscape.jpg" tppabs="http://www.w3school.com.cn/i/eg_landscape.jpg"></iframe> <p>一些老的浏览器不支持 iframe。</p> <p>如果得不到支持,iframe 是不可见的。</p> </body> </html>
<html> <frameset cols="20%,80%"> <frame src="../example/html/frame_a.html" tppabs="http://www.w3school.com.cn/example/html/frame_a.html"> <frame src="../example/html/link.html#C10" tppabs="http://www.w3school.com.cn/example/html/link.html#C10"> </frameset> </html>
<html> <frameset cols="180,*"> <frame src="../example/html/content.html" tppabs="http://www.w3school.com.cn/example/html/content.html"> <frame src="../example/html/link.html" tppabs="http://www.w3school.com.cn/example/html/link.html" name="showframe"> </frameset> </html>
HTML基础教程(8)——HTML框架,布布扣,bubuko.com
标签:des style blog http color 使用
原文地址:http://www.cnblogs.com/blueskylcc/p/3851403.html