0

这是我到目前为止所拥有的:

<?php

// Simulating some post values for test proposes
$_POST['test'] = 'testing values';

// POST contents (originally from a form in another page)
$query = http_build_query( $_POST );

?>
<!DOCTYPE HTML>
<html>
<head>
 <meta http-equiv="content-type" content="text/html" />
 <script src="http://code.jquery.com/jquery-latest.js"></script>
 <script type="text/javascript">
  $(function() { $("#myiframe").load(function(){ window.location.replace('after.php'); }); });
 </script>
 <title>iFrame Load POST</title>
</head>
<body>
<iframe id="myiframe" src="load.php" width="0" height="0"></iframe>
</body>
</html>

我需要的是能够将最初从另一个页面中的表单发送的 $_POST 数据发送到 iframe,并在 iframe 加载和处理发布数据后重定向页面。

- - 编辑 - -

事实上,它不需要 iframe,但我仍然需要对 load.php 进行 post 调用并等待它加载以进行重定向。在 load.php 完成加载请求之前,我无法重定向。这就是我使用 iframe 方法并且之前使用 GET 而不是 POST 的原因。

--------------

有人可以帮忙吗?

谢谢!

4

1 回答 1

2

只需使用 jQuery AJAX 调用。它允许您附加一个处理程序,一旦请求成功完成,该处理程序就会执行。

$.ajax({
    url: 'load.php',
    data: {foo: 'bar'},
    type: 'post', // you can use get if you want to.
    success: function(response) {
        window.location.replace('after.php'); 
    }
});
于 2013-01-18T15:31:42.240 回答