Session失效,从IFRAME跳转到别的页面问题

Session失效,从IFRAME跳转到别的页面问题

Session失效,我们需要跳转到登陆界面,可是如果是IFRAME的话,可能就直接在IFRAME里面跳转了,这不是我们想要的结果,其实我们只要加上下面这段代码,就可以跳转到一个全新的页面,代码如下:

1 <script type="text/javascript">  
2 if(top != self) {
3 if(top.location != self.location) {
4 top.location = self.location;
5 }
6 }
7 </script>

你可能感兴趣的:(Session失效,从IFRAME跳转到别的页面问题)