我需要使用什么JavaScript从iframe重定向父窗口?

我希望他们点击一个超链接,使用JavaScript或任何其他方法,将父窗口重定向到一个新的URL。


当前回答

Target ="_parent"对我来说很有用。简单,没有麻烦!

其他回答

window.top.location.href = 'index.html';

这将重定向主窗口到索引页。 谢谢

我们必须使用window.top.location.href从iframe操作重定向父窗口。

演示网址:

对于当前页面- window.location.href = "你的url在这里";

对于父页面- window.top.location.href = "你的url在这里";

从HTML

<a href="http://someurl" target="_top">link</a>

或者另一种选择如下(使用文档对象)

parent.document.location.href = "http://example.com";

我发现<a href="…" target="_top">link</a>也能工作