我的应用程序在一个框架中运行,该框架分为两个部分。左侧导航菜单 以及执行所有JSP的正确部分。通过使用以下帧buster代码 我确保我的框架没有在另一个欺诈框架内运行。
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>
我该如何检查?