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.
我有一个来自 a.com 的页面,其中包含来自 b.com 的 iframe,经过一些操作,b.com 最终将 iframe 重定向回 a.com。那么页面可以访问iframe的当前位置/src吗?
问候,
吉什努
一旦 iframe 中的页面在 a.com 上,安全限制就会解除,您可以像往常一样访问父页面。更改 iframe src 时会更新安全限制,即使它是由 iframe 本身更改的。
如果您需要知道 iframe 何时最终定向回 a.com,您可以让它调用父文档中的函数,window.parent.redirected()其中redirected()是您在 a.com 的父文档中定义的函数。
window.parent.redirected()
redirected()