PHP quot;header (location)quot; inside IFRAME, to load in _top location?(PHP“标头(位置)在 IFRAME 中,加载到 _top 位置?)
问题描述
我有一个简单的表格,它位于 IFRAME 中.当用户单击提交时,它会重定向到我服务器上的特定页面.我用于重定向的功能是
I have a simple form which is inside IFRAME. When user click on SUBMIT, it redirects to a specific page on my server. The function I use for the redirect is
header ('Location: mypage2.html');
exit ();
但我希望新页面在 _top 位置打开,而不是在我使用的同一个 IFRAME 内.如何告诉浏览器在 _top 中而不是在 IFRAME 中打开新页面?提前致谢.
But I want the new page to open in _top location, not inside the same IFRAME that I use. How can I tell the browser to open the new page in _top not inside the IFRAME? Thanks in advance.
推荐答案
在 PHP 中无法达到预期的效果.这是您必须从 JavaScript 执行的操作,或者将 target
属性添加到 <form>
:
You are not able to achieve the desired effect in PHP. This is something you'd have to do from JavaScript or add target
attribute to <form>
:
<form ... target="_top">
这篇关于PHP“标头(位置)"在 IFRAME 中,加载到 _top 位置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP“标头(位置)"在 IFRAME 中,加载到 _top 位置?
基础教程推荐
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01