您的位置:首页 > 其它

frameset标签布局

2011-01-06 15:29 218 查看
<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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: