请求将参数发送到

请求将参数发送到

本文介绍了如何使用 HTTP POST 请求将参数发送到 Iframe的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须使用 POST 方法向 IFRAME 发送一些参数.我在这里阅读了 设置 的 HTTP 请求类型 那是不可能的.我正在考虑 Javascript 中的解决方案,但我无法实现它,所以我无法测试它是否是解决此问题的有效解决方案.我想问一下是否有人有同样的问题,是否有可能解决,在积极的情况下如何解决?

I have to send some parameter to an IFRAME with POST method.I have read here Setting the HTTP request type of an <iframe> that it isn't possible. I'm thinking a solution in Javascript but I can't implement it so I can't test if it is a valid solution for this issue.I want to ask if someone has the same problem and if it is possible to solve and in positive case how to?

推荐答案

<form ... target="hidden_iframe">
...
</form>

<iframe name="hidden_iframe" ...></iframe>

这篇关于如何使用 HTTP POST 请求将参数发送到 Iframe的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-26 06:48