我正在使用调用ajax页面$.post。
$.post
$.post("ajaxpage.php", $("#theform").serialize());
如何回显页面返回的响应?我尝试将其保存到var中,但没有得到响应。
var resp = $.post("ajaxpage.php", $("#theform").serialize()); console.log(resp);
$.post("ajaxpage.php", $("#theform").serialize(), function(data, status, xhr) { console.log(data); });