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 メソッドを使用し、以前は POST の代わりに GET を使用していました。

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

誰か助けてくれませんか?

ありがとうございました!

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 に答える