-4

リロードせずに、別のページのテキストボックスからphpに単純な変数を与えたいです。そのためにはajaxが必要だと聞いたことがありますが、それを行う方法がわかりません。ajaxの使い方がわからないので、例が必要です。

ありがとう

4

2 に答える 2

0

Jquery ( http://jquery.com/ ) is a nice javascript library that can handle this. Look at the .post function ( http://api.jquery.com/jQuery.post/ ) this is commonly used for ajax requests

于 2012-05-10T04:22:33.293 に答える
0

私はjavascriptでやろうとしましたが、今のところjQueryが解決策です。

    $.ajax ({
            type:'post',
            url:'yourpage.php',
            success: function(response.trim()) {

                                               }
    data: $("#bidform").serialize();
           });
于 2012-12-12T13:17:31.207 に答える