0

我有一个 iframe,当您按下按钮时会转到主页

self.redirect('/')

但问题是主页面的内容显示在 iframe 中,我想在主窗口中显示它(而不是在 iframe 中)

我们怎样才能得到它?

4

1 回答 1

0

如果我理解你的问题。您喜欢重定向到您的主页并删除 iframe。在您的 iframe 中,您必须使用一个按钮来启动重定向和一些 javascript:

<input value="ReDirect" id="button" onclick="parent.parent.location.href ='... url ....';">

另请参阅此问题:如何在 JavaScript 中提交表单后动态关闭 iframe

于 2013-06-11T18:55:28.637 回答