得到$ .post的回复

时间:2011-10-12 03:36:58

标签: jquery ajax

我正在使用$.post调用ajax页面。

$.post("ajaxpage.php", $("#theform").serialize());

如何回显页面返回的响应?我尝试保存到var,但它没有给我回复。

var resp = $.post("ajaxpage.php", $("#theform").serialize());
console.log(resp);

2 个答案:

答案 0 :(得分:4)

$.post("ajaxpage.php", $("#theform").serialize(), function(data, status, xhr) {
    console.log(data);
});

答案 1 :(得分:3)

http://api.jquery.com/jQuery.post/

$.post("ajaxpage.php", $("#theform").serialize(),function(data){
  $('#yourDivId').html(data);//data is what you recived from the server

});