我的应用程序在一个框架中运行,该框架分为 2 个部分。左侧导航菜单和执行所有 JSP 的右侧部分。通过使用以下帧破坏代码,我确保我的帧没有在另一个欺诈帧内运行。
if(top != self) top.location.replace(self.location);
现在需要检查在我的框架内执行的所有 JSP 页面是否在适当的框架内运行。
我的框架结构如下所示。
<frameset framespacing="0" border="0" frameborder="no" rows="105px,*">
<frame name="header" id="header" scrolling="no" noresize marginwidth="0" marginheight="0" src="<%=request.getContextPath() %>/common/nav_header.jsp">
<frame name="content" id="content" scrolling="no" marginwidth="0" marginheight="0" noresize src="<%=request.getContextPath() %>/common/glb_loading.html">
</frameset>
我该如何检查?