当你用到frame的时候,你就知道了 :)

解决方案 »

  1.   

    main.htm:
    <html>
    <head>
    </head>
    <frameset cols="20%,*">
        <frame src="menu.htm">
        <frame src="1.htm">
    </frameset>
    </html>
    menu.htm:
    <html>
    <head>
    </head>
    <body>
    <a href="http://www.163.com" target=_blank>http://www.163.com</a>
    <a href="http://www.sohu.com" target=_top>http://www.sohu.com</a>
    <a href="http://www.tom.com" target=_parent>http://www.tom.com</a>
    <a href="http://www.yahoo.com.cn" target=_self>http://www.yahoo.com.cn</a>
    </body>
    </html>
    1.htm:
    <html>
    <head>
    </head>
    <body>
    This is 1.htm.
    </body>
    </html>
      

  2.   

    _blank:在新窗口打開
    _top:替代本窗口的頁面
    _parent:在當前frame的上一層打開
    _self:在當前frame打開