找到真正的父元素

时间:2012-04-12 07:59:09

标签: javascript jquery

我有一个用完iframe的网站。

要注销,我使用URL运行以下JavaScript,这样可以正常工作。

 window.parent.location.href

我抓住了我有时如果我没有正确退出网站,然后重新连接I endup 2 iframe(可能更多)。

有没有办法让以下JavaScript找到所有潜在iframe的最外层(真正的父级)?

 window.parent.location.href

我想确保无论有多少iframe,重定向仍然会发生。

任何建议都会很棒... thx

2 个答案:

答案 0 :(得分:2)

使用window.top代替window.parent

答案 1 :(得分:0)

topParent = window;

while (topParent.parent) {
    topParent = topParent.parent; 
}

// do whatever you want on topParent