五一框架

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<!--框架,最外层去掉body,用frameset代替-->
<frameset rows="100,*" frameborder="0"><!--上下分,第一行100像素,剩余为第二行;rows换成cols,则上下分变成左右分;frameborder="0" 去掉分割线-->
<frame name="超链接名" src="页面地址" noresize="noresize"><!--noresize,禁止窗口调整大小-->
<frame src="" scrolling="no"><!--scrolling="no" 取消显示滚动条-->
</frameset>



<!--2、iframe-->
<!--在原来页面嵌入小窗口显示其他页面-->
<iframe src="其他页面的地址" width="宽" height="高" frameborder="0" scrolling="no">
<!--frameborder,边线;  scrolling,滚动条;  如果设置高和宽为0,则不显示。但是后台存在,例如熊猫烧香病毒-->
</iframe>
</html>
原文地址:https://www.cnblogs.com/lk-kk/p/4472652.html