解决iframe 重定向让父级页面跳转

it2022-05-05  103

当嵌套iframe的时候,session过期之后,跳转登录页面只会在本窗口做跳转,父类窗口不会发生变化。解决方案

if (window != top){ top.location.href = location.origin+location.pathname; }

最新回复(0)