小编典典

得到$ .post的回复

ajax

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

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

如何回显页面返回的响应?我尝试将其保存到var中,但没有得到响应。

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

阅读 315

收藏
2020-07-26

共1个答案

小编典典

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