解释
我正在发送一个 POST,并且在 PHP 中我正在检查数据库中是否已经存在用户名。如果是,则返回错误。
但问题是,我不能使用相同的function(data)
,因为我希望错误位于另一个 div 中。
$.post("events.php?action=send", { data : $(this).serialize() }, function(data)
{
$("#processing").html('');
$("#comments").html(data);
});
问题
我不能在匿名函数中有两个变量,比如函数(数据,错误),那么我应该如何获取打印的“错误”PHP,例如“用户已经存在于数据库中”,然后将其放入#errors div ?