日期:2014-05-17  浏览次数:20758 次

左边菜单 右边显示
请问如何设计?


左边1个菜单导航条
右边是一个展示框

随着左边的选择变化而变化

粘贴出简单代码,说出思路即可

------解决方案--------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <title>后台管理系统</title>
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
 </head>

<frameset rows="93,*" cols="*" frameborder="yes" border="0px" bordercolor="#0970BB" framespacing="0px">
  <frame src="/qiyueOA/frame/top.jsp" name="topFrame" noresize="noresize" bordercolor="#0970BB" scrolling="No"  id="topFrame" title="topFrame" />
  <frameset cols="213,*" frameborder="yes" border="0px" framespacing="0px" bordercolor="#0970BB">
    <frame src="/qiyueOA/frame/menu_left.jsp" name="leftFrame" noresize="noresize" scrolling="No" id="leftFrame" title="leftFrame" bordercolor="#0970BB" />
    <frame src="/qiyueOA/frame/con_center.jsp" name="mainFrame" noresize="noresize" id="mainFrame" title="mainFrame" />
  </frameset>
</frameset>


</html>

这是页面的结构 上边是logo 左边是菜单列表 右边是 不同菜单对应的内容显示区域 
菜单按键对应的链接要指到所要显示的页面区域
<a href="<%=path %>/work/SendEmail_execute" target="mainFrame">发送邮件</a>

这是我以前回复过的,看看合适不