0

index.php に次のコードがあります。

 $('#whois').click(function () {
        //console.log("button clicked");
            $('#whois_content').html("");
            $('#fade').fadeOut('slow', function () {
                urlLinkas();
            });
        });

次のように、このスクリプト内で post 値を test.php に渡したいと思います。

 $('#whois').click(function () {
        //console.log("button clicked");
        $.ajax({
        type: "POST",
        url: "test.php",
        data: info,
        success: function(){
        //dont know what to write here
        }
            $('#whois_content').html("");
            $('#fade').fadeOut('slow', function () {
                urlLinkas();
            });
        });

そして、test.php でこの投稿値を呼び出します$_POST['info']

多分誰かが私が言っていることを理解するでしょう。

4

2 に答える 2