Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的网页,分为三个 iframe A、B、C。
iframe B 执行 Ajax 请求,它应该刷新页面以重定向到我的登录页面。显然,登录页面只出现在 iframe B 中。有没有办法重定向整个页面?
对 top.location 的简单检查不会起作用吗?
<script type="text/javascript"> <!-- if (top.location!= self.location) { top.location = self.location.href } //--> </script>
这应该有效。
<script> Window.top.location = 'new url'; </script>