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.
我有一个 php 页面 form.php。一旦用户填写表格并单击“提交”,所有数据都会保存在数据库中,并且他会被重定向到 list.php。
现在我在另一个站点的 iframe 中添加了 form.php。问题出在 IE-8 中。在 iframe 中,一旦用户提交数据,数据就会保存在数据库中,但用户不会重定向到 list.php,但 user.php 页面会以空白表单刷新。
它在 IE 开发工具栏的 IE-Tester 和 IE-8 模式下工作,但在 IE-8 中不工作。
我认为你在你的问题中遗漏了一些东西。
可能有一些cookie问题。
在头文件中添加以下代码并检查
header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
谢谢