Heim  >  Artikel  >  Web-Frontend  >  frameset如何实现整个页面的跳转_html/css_WEB-ITnose

frameset如何实现整个页面的跳转_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:54:191296Durchsuche

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

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn