我正在使用mail-data.php
页面中嵌入的iFrame payin.php
,我在其中输入用户邮件的详细信息。
我可以根据从数据库中检索到的ID将数据从payin.php
(原始页面)页面传递到mail-data.php
(iFrame)吗?
如何将mail-data.php
(iFrame)中的数据发布到另一个页面mail.php
以执行mail
功能?如果是,我如何将数据从普通页面传递到iFrame页面?
我尝试在iFrame页面中使用表单操作mail.php
,但是我收到了显示的错误。
Not Acceptable
An appropriate representation of the requested resource /radical/mail-data.php could not be found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
可能是什么问题?
答案 0 :(得分:0)
此代码示例显示了如何使用表单元素的target
属性通过iframe发送表单请求:
<iframe src="about:blank" name="mail-data" />
<form action="mail-data.php" method="post" target="mail-data">
<!-- form fields !-->
</form>
答案 1 :(得分:0)
我只是在href的帮助下将id值传递给mail-data.php,然后使用get方法转发id。它运行得很好
感谢