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 值$_POST['info']

也许有人会明白我在说什么。

4

2 回答 2

1

这会更好

$.post("test.php", { info: "Something", moreinfo: "Something Else" })
.done(function(data) {
    $('#whois_content').html("");
    $('#fade').fadeOut('slow', function () {
        urlLinkas();
    });
});
于 2013-04-18T05:42:08.280 回答
0

这应该可以,试试看:

$('#whois').click(function () {
        $.ajax({
            type: "POST",
        url: "test.php",
        data: {info: "some info"},
        success: function () {

        }
        $('#whois_content').html("");
    $('#fade').fadeOut('slow', function () {
        urlLinkas();
    });
});
于 2013-04-18T05:45:15.920 回答