用记事本新建一个文本FrameA.txt,改后缀为htm
<html>
<title>Frame A</title>
<frameset cols=50%,*>
<frame src="a.htm">Frame A</frame>
<frameset rows=50%,* >
<frame src="b1.htm"
name=Frame_B>Frame_B</frame>
<frame src="c1.htm" name=Frame_C>Frame_C</frame>
</frameset>
</frameset>
</html>
注意:红色标出部分,
新建第二个文本a.txt.
<html>
<title>
Frame A
</title>
<body>
<p><a href="b.htm" target="Frame_B">输出文件到Frame_B中</a></p>
<p><a href="c.htm" target="Frame_C">输出文件到Frame_C中</a></p>
</body>
</html>
新建第三个文本b.txt.
<html>
<p><title>Frame B</title></p>
<p><body>File name:b1.htm</body></p>
<p><body>Target=Frame_B </body></p>
</html>
新建第四个文本c.txt.
<html>
<p><title>Frame C</title></p>
<p><body>File name:c1.htm</body></p>
<p><body>Target=Frame_C </body></p>
</html>
新建第五个文本c.txt.
<html>
<title>Frame B</title>
<body>
<p>Frame B</p>
</body>
</html>
新建第六个文本c.txt.
<html>
<title>Frame C</title>
<body>
<p>Frame C</p>
</body>
</html>
文本放在同一个文件夹内打开第一个文件Frame A即可