首页 > 代码库 > frameset如何实现整个页面的跳转

frameset如何实现整个页面的跳转

登录页面login.jsp,系统登录成功后展示mainLayout.jsp,我现在用frameset框架把页面mainLayout.jsp分为三部分,head.jsp.、left.jsp、right.jsp,每个部分都有退出按钮。左边用做目录,有很多功能菜单。
<a href=http://www.mamicode.com/"#" onclick="loginOut()" target="_top">退出系统 
<script>  function loginOut(){	  top.location.href=http://www.mamicode.com/"/loginOut.do";"white-space:pre">	  top.location.reload();  }  </script>
现在登录成功后,进入功能菜单,点击退出只能返回到mainLayout.jsp,再点击一次退出才能成功。不能完美退出。

frameset如何实现整个页面的跳转