JSP和HTML框架集



我在我的html (GUI)中使用框架集。我的GUI由四个部分组成:页眉、页脚、侧边导航和内容页。

现在我已经在标题框架集中提供了一个注销按钮的功能。重定向后,新的JSP页面只显示在标题中,而不显示在窗口中(窗口仍然包含上述所有框架集)

我想在整个窗口上显示这个新的重定向页面

您应该在客户端执行此操作。

<form action="/logout" method="post" target="_top">
<input type="submit" name="logout" value="Logout">
</form>

如果你重定向到的其中一个页面不应该有外部框架,你可以使用javascript来打破

// run this javascript on the logout landing page and it will remove the frames
if (parent.frames.length>0){
   parent.location.href=self.document.location;
}

相关内容

  • 没有找到相关文章