使用Recaptcha和Jquery验证

时间:2015-05-28 11:27:54

标签: javascript php jquery recaptcha

我正在使用Jquery验证构建联系表单。 在我的表格底部是一个google reCAPTCHA小部件。

我似乎无法找到如何在Jquery验证中添加验证码。

这是我的代码:

submitHandler: function(form) {
        $(form).ajaxSubmit({
            type:"POST",
            data: $(form).serialize(),
            url:"../php/process.php",
            success: function() {
                //$('#success').fadeIn();
               $('#contact :input').attr('disabled', 'disabled');
               $('#contact').fadeTo( "slow", 0, function() {
                    $(this).find(':input').attr('disabled', 'disabled');
                    $(this).find('label').css('cursor','default');
                    $('#success').fadeIn();
                });
            },

这是我的php:

//recaptcha
$recaptcha_secret = "6LffhgcTAAAAAMETO_XZOZn4dztphW3GM9DbSsd0";
    $response = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=".$recaptcha_secret."&response=".$_POST['g-recaptcha-response']);
    $response = json_decode($response, true);

if($response) {
$send = mail($to, $subject, $message, $headers);
}
else
{
    return false;
}

我是初学者,我不知道如何才能做到这一点。

欢迎任何帮助。

谢谢

1 个答案:

答案 0 :(得分:1)

查看此分步指南,它将帮助您正确设置 -

http://www.sitepoint.com/setup-user-friendly-captcha-jqueryphp/

主要概念是在继续执行AJAX操作之前,通过服务器上的POST验证您的表单和Google验证码。