如何通过iframe的post方法将数据传递给php

时间:2014-11-08 15:55:55

标签: javascript jquery

我需要将数据从隐藏的iframe传递给php。我看过许多从iframe发送数据的教程。但所有这些都是通过get方法。我正在使用其中一个(通过get方法),下面是代码。

 function downloadURL(url) {
                    var hiddenIFrameID = 'hiddenDownloader',
                        iframe = document.getElementById(hiddenIFrameID);
                    if (iframe === null) {
                        iframe = document.createElement('iframe');
                        iframe.id = hiddenIFrameID;
                        iframe.style.display = 'visible';
                        document.body.appendChild(iframe);
                    }
                    iframe.src = url;
                }

但最近我试图传递大量数据。然后一切都没有过去。所以我想使用iframe通过post方法传递数据。

请建议我怎么做。

0 个答案:

没有答案