标签:前端第一课时
首先建立了一个all.html
<frameset rows="20%,*"frameborder="1" framespacing=5 bordercolor=red>
<frame src="top.html" noresize/> //top.html 暂时用一张图片替代
<frameset cols="20%,*"framespacing=5>
<fram src="left.html" noresize/> //norsize指的是无法调整框架的大小
<fram src="right1.html" name=”right”/> //设置name=right ,是为了在下面的left.Html中的target="right" 相对应,当点击bbb时,right2.html 会出现在name=right处,以覆盖当前页面。
</frameset>
</framset>
注意如果frameborder="0",则bordercolor对边框的颜色设置看不到效果。
left.html
<body bgcolor=pink>
<a href=”right1.html” target=”right”>aaa</a><br/>
<a href=”right2.html” target=”right”>bbb</a><br/>
</body>
除此之外还要注意frame中属性scrolling 滚动条的设置,有三个值yes no auto
标签:前端第一课时
原文地址:http://wcoke.blog.51cto.com/8926116/1412716