`
tk_zhang
  • 浏览: 228971 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

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

阅读更多

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

 

<script type="text/javascript">
		if(top != self) {
			if(top.location != self.location) {
				top.location = self.location;
			}
		}
</script>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics