frameset标签布局

来源:互联网 发布:网络系统管理专业 编辑:程序博客网 时间:2024/05/18 22:17

<html>

<frameset cols="120,*">

<frame src="/example/html/html_contents.html">
<frame src="/example/html/frame_a.html" name="showframe">

</frameset>

</html>

 

 

 

//html_contents.html

<html>
<body>

<a href ="/example/html/frame_a.html" target ="showframe">Frame a</a><br>
<a href ="/example/html/frame_b.html" target ="showframe">Frame b</a><br>
<a href ="/example/html/frame_c.html" target ="showframe">Frame c</a>

</body>
</html>

原创粉丝点击