jQuery validate - 使用远程请求检查电子邮件是否存在(ajax)

时间:2015-02-04 15:12:57

标签: javascript php jquery jquery-validate

我正在使用'遥控器'参数验证jQuery以访问检查电子邮件是否存在的脚本。 我检查了Firebug并且发出了请求,但我无法返回并在该字段中显示错误消息。 下面是我的Javascript和PHP代码:

使用Javascript:

mail: {
                required: true,
                email: true,
                remote: {
                    url: 'ajax/usuario.checar.mail.php',
                    type: 'POST'
                }
}

PHP:

if($checar > 0)
{
    // If e-mail exists, error message below
    echo "E-mail já cadastrado!";
    exit;
}

// If e-mail not exists, return true 
echo "true";

0 个答案:

没有答案