学习HTML,网页框架Frameset

来源:互联网 发布:网络歌手伤感歌曲大全 编辑:程序博客网 时间:2024/05/22 04:43

用记事本新建一个文本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即可

0 0