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 的某个页面中,我尝试将 url 重定向到父索引页面。但是如果我使用的是 header('location:fullpath/index.php')。然后它重定向到提到的页面,但在 iframe 内。我需要它将在 iframe 之外打开。你能帮我解决这个问题吗?
如果您不想使用 javascript 并且您可以控制目标页面,则可以将此元标记放在目标页面的顶部,它应该在新窗口中打开。
<META HTTP-EQUIV="Window-target" CONTENT="_blank">
这是您可以尝试的其他CONTENT选项的列表,因为我不确定是什么beyond the iframe意思。
CONTENT
beyond the iframe
Same Frame -_self Whole Page -_top New Window -_blank Parent Frame-_parent