天天看点

frameset实现各个frame刷新

6.html

<a href="http://www.baidu.com/" target="_blank">_blank</a></br>

<a href="http://www.baidu.com/" target="_self">_self</a></br>

<a href="http://www.baidu.com/" target="_parent">_parent</a></br>

<a href="http://www.baidu.com/" target="_top">_top</a></br>

<a href="http://www.baidu.com/" target="1">刷新页面一</a></br>

<a href="http://www.baidu.com/" target="2">刷新页面二</a></br>

<a href="http://www.baidu.com/" target="3">刷新页面三</a></br>

<a href="http://www.baidu.com/" target="4">刷新页面四</a></br>

<a href="http://www.baidu.com/" target="5">刷新页面五</a></br>

3.html

<body>

页面三

<Iframe src="6.html" width="500" height="500"  frame></iframe>

</body>

work04.html

<frameset cols="150,*">

 <frameset rows="80,*">

  <frame name="1" src="1.html">

  <frame name="2" src="2.html">

 </frameset>

 <frameset rows="600,*">

  <frame name="3" src="3.html">

  <frameset cols="600,*">

   <frame name="4" src="4.html">

   <frame name="5" src="5.html">

  </frameset>

 </frameset>

</frameset>

继续阅读