当你按一个按钮进入主页面时,我有一个iframe
self.redirect('/')
但问题是主页的内容显示在iframe中,我想在主窗口中显示(而不是在iframe中)
我们怎么能得到它?
答案 0 :(得分:0)
如果我理解你的问题。您想重定向到您的主页并删除iframe。 在您的iframe中您必须使用按钮来启动重定向和一些javascript:
<input value="ReDirect" id="button" onclick="parent.parent.location.href ='... url ....';">
另请参阅此问题:How to dynamically close an iframe after form submit in JavaScript