zoukankan      html  css  js  c++  java
  • 框架frameset小结

    name="showframe"
    =======================

    <html>
    <head></head>
    <frameset cols="120,*">
    <frame src="/example/html/html_contents.html"></frame>
    <frame name="showframe" src="/example/html/frame_a.html"></frame>
    </frameset>
    </html>

    导航列表
    =======================

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

    noresize="noresize
    =======================

    <html>
    <frameset cols="50%,*,25%">
    <frame src="/example/html/frame_a.html" noresize="noresize" />
    <frame src="/example/html/frame_b.html" />
    <frame src="/example/html/frame_c.html" />
    </frameset>
    </html>

    noframes
    =======================

    <html>
    <frameset cols="25%,50%,25%">
    <frame src="/example/html/frame_a.html">
    <frame src="/example/html/frame_b.html">
    <frame src="/example/html/frame_c.html">
    <noframes>
    <body>您的浏览器无法处理框架!</body>
    </noframes>
    </frameset>
    </html>

    =======================

  • 相关阅读:
    局域网中电脑之间无法ping通问题
    Python 字典dict操作定义
    set集合
    Python 元组遍历排序操作方法
    Python List 列表list()方法
    set函数&操作
    dict函数
    文件操作
    list函数
    字符串格式化format使用
  • 原文地址:https://www.cnblogs.com/jesselzj/p/2331466.html
Copyright © 2011-2022 走看看