试图找出jQuery的$ .post回调功能

时间:2011-06-26 21:36:10

标签: jquery ajax .post

我有一个jquery脚本工作正常,除了能够通过$ .post发送数据并收到回复。这是相关的代码:

$.post(
    'test.php',
    { userfname: f.editfname, userlname: f.editlname, userid: v.user }, 
    callback: function(data) {
        $.prompt('You have successfully added this book to your cart!');
    }
);

我希望test.php的结果放在结果div

2 个答案:

答案 0 :(得分:1)

代码包含无效语法。试试这个:

$.post('test.php',
{
    userfname: f.editfname,
    userlname:f.editlname,
    userid:v.user
}, 
function(data)
{
    $.prompt('You have successfully added this book to your cart!');
});

答案 1 :(得分:0)

你喜欢这个吗?

$("div#results").html(data);