zoukankan      html  css  js  c++  java
  • 框架标签

    承载页

        <html>

          <head>

            <title></title>

          </head>

          <frameset rows="15%,*">    //承载页没有body标签,rows表示上下分,

            <frame src="top.html" noresize="noresize"/>

            <frameset cols="30%,*">

              <frame src="left.html" noresize="noresize"/>

              <frame src="right.html" name="right"/>

            </frameset>

          </frameset>

        </html>

    左边那个页面——left.html

        <html>

          <head>

            <title>这是左边的页面</title>

          </head>

          <body bgcolor="pink">

            <a href="http://www.cnbeta.com" target="right">cnbeta</a>

            <a href="http://www.51aspx.com" target="right">51aspx</a>

          </body>

        </html>

  • 相关阅读:
    lufylegend:图形变形3
    javascript: Math.sin() cos() 用法
    lufylegend:图形变形2
    lufylegend:图形变形1
    lufylegend:图片的加载和显示
    lufylegend基础知识1
    canvas使用3
    canvas使用2
    canvas使用1
    javascript:addEventListener
  • 原文地址:https://www.cnblogs.com/zhangchaoran/p/6800942.html
Copyright © 2011-2022 走看看