Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Iframe,其中加载了一个表单。当我单击提交按钮(在 iframe 中的表单中)时,我希望在父窗口中加载响应(使 iframe 作为父窗口)
关于如何使用它的任何想法
将表单的目标设置为 _top。
<form target="_top" action="#" method="get">
表单提交将替换 iframe 的父级。
您可以通过“父”属性访问父窗口。如果你需要做一些特殊的脚本,并从那里调用函数。否则我更喜欢@epascarello 的解决方案。