找到开场者iframe的父级

时间:2013-04-11 21:53:22

标签: javascript

假设我们在页面test1.html中有一个iframe

<iframe src=test2.html"></iframe>

并且test2.html中有一个链接:

<a href="test3.html" target="_blank">open in new window"</a>
在test3.html中,如何知道开启者的父级? (即test1.html)

1 个答案:

答案 0 :(得分:4)

window.opener.top这样的东西可以让你获得父亲的窗口对象。从那里你可以获得.location.href或任何你需要的东西。请记住,如果任何文档位于不同的域中,浏览器限制将导致此操作失败。