iframe session过期子窗口跳转到登录页,父窗口仍在首页
super
2020-11-10 18:56
3136
在登录页面html添加代码:
<script>
//登陆判断父页面是否跳转到登录页
if (window.top != null && window.top.document.URL != document.URL){
window.top.location = document.URL;
}
</script>
0 条讨论