问题是这样的:
  
     左边是菜单 , 右边是内容。点击左边菜单  右边显示相应的内容。
就像uc 后台那样 不过看uc 后台写得太大了。
     

解决方案 »

  1.   

    <a href="#" target=right>link</a>
    关键是target
      

  2.   


    <html>
    <head>
    <title>管理中心</title>
    <meta http-equiv=Content-Type content=text/html;charset=gb2312></head>
    <frameset rows="64,*"  frameborder="NO" border="0" framespacing="0">
    <frame src="admin_top.html" noresize="noresize" frameborder="NO" name="topFrame" scrolling="no" marginwidth="0" marginheight="0" target="main" />  <frameset cols="200,*"  rows="*" id="frame">
    <frame src="left.php" name="leftFrame" noresize="noresize" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" target="main" />
    <frame src="right.html" name="main" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto" target="_self" />
      </frameset>
    <noframes>
      <body></body>
      </noframes>
    </html>研究这段代码!呵呵
      

  3.   


    <iframe>:它的作用是在网页中间插入一个框显示另一个文件。
    <iframe>的参数设定如下:
    <iframe src="iframe.html" name="test" align="middle" width="300" height="100" marginwidth="1" marginheight="1" frameborder="1" scolling="yes">
    1:src="iframe.html"
    //要显示于此框窗的文件来源档案名称,必须加上相对或绝对路径。
    2:name="test"
    //此框窗名称,这是连接标记的target参数所需要的。
    3:align="middle"
    //可选值为 left、right、top、middle、bottom,作用不大。
    4:width="300" height="100"
    //框窗的宽和高,以px为单位。
    5:marginwidth="1" marginheight="1"
    //该插入的文件与框边所保留的空间。
    6:frameborder="1" 
    //使用1表示显示边框,0则不显示(可以是yes或no)
    7:scolling="yes"
    //使用yes表示允许滚动条(内定),no则不允许滚动条。
      

  4.   

    frame 或者 iframe··
    楼上两位说的很好··
    共同学习了
      

  5.   

    frame或者iframe都可以~~只需要在菜单这边的链接地址部分+上 target="目标对象",指定你要在哪个对象里加载新的页面地址!
      

  6.   

    真是受不了自己了
    受到各位启发 自己做了 原来是之前没有加target = main 
    所以 右边没有正确显示  。谢谢啦 。