<frameset>标签
属性:rows,cols 可以使用固定值,百分比和*(剩余)三种
border,frameborder
P:一般不用于前台,不利于搜索引擎
<frame>标签
属性:src,name,scrolling,noresize
<a href="">的target属性
四个内置的取值:_blank,_parent,_self,_top
<noframes>标签
使用Microsoft Visual Studio.NET创建框架集
<iframe>标签
可与body共存,可以内嵌小窗口
P:分帧不能和body标签及内容体共存
demo.html
<html>
<head>
<title>后台管理页面</title>
<meta http-equiv="Content-Type" content="text/html;charset=GB2312">
</head>
<frameset rows="80,*">
<frame src="header.html" name="top" noresize>
<frameset cols="180,*">
<frame src="menu.html" name="left" noresize>
<frame src="main.html" name="right" noresize>
</frameset>
<noframes>
你使用的是不带分针帧浏览器,请使用有分帧的浏览器,或者转向不使用分帧的页面访问。
</noframes>
</frameset>
</html>
demo1.html
<html>
<head>
<title>后台管理页面</title>
</head>
<body>
####################<br>
####################<br>
####################<br>
####################<br>
####################<br>
<a href="http://www.google.cn" target="view">google</a><br>
<a href="http://www.163.com" target="view">163</a><br>
<a href="http://www.baidu.com" target="view">baidu</a><br>
<iframe src="http://www.baidu.com" name="view">
</iframe><br>
@@@@@@@@@@@@@@@@@@<br>
@@@@@@@@@@@@@@@@@@<br>
@@@@@@@@@@@@@@@@@@<br>
@@@@@@@@@@@@@@@@@@<br>
@@@@@@@@@@@@@@@@@@<br>
@@@@@@@@@@@@@@@@@@<br>
</body>
</html>
看高老师视频敲下来的代码~~呵呵