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>

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

  • 相关阅读:
    hibernate 映射<二>一对一主键关联
    C# Convert Type to T
    008 OS模块
    001基础知识补充与拓展
    005Buffer(缓冲区)
    009path模块
    002nodejs简介与安装
    007http模块
    004NPM包管理器
    003nodejs的模块化
  • 原文地址:https://www.cnblogs.com/jesselzj/p/2331466.html
Copyright © 2011-2022 走看看