在成功进行表单验证后,如何让我的ajax表单将captcha验证注入浏览器?

时间:2010-09-21 05:00:49

标签: php jquery ajax codeigniter codeigniter-2

目前,在我的表单通过验证后,它转发到html页面。

我想最后一步拉动reCaptcha,当reCaptcha通过时,只有用户的注册详细信息发送到我的数据库,用户转发到我选择的页面。

请告诉我最好的方法,谢谢。

这是我的javascript和ajax。 submit.php是一个包含我所有验证规则的文件。我想我现在必须有一个文件来保存我的验证码并使用ajax来获取该文件,或者可能有更好的方法。我还在学习。

$(document).ready(function(){

        $('#fhjoinForm').submit(function(e) {

            register();
            e.preventDefault();

        });

    });


    function register()
    {
        hideshow('loading',1);
        error(0);

        $.ajax({
            type: "POST",
            url: "submit.php",
            data: $('#fhjoinForm').serialize(),
            dataType: "json",
            success: function(msg){

                if(parseInt(msg.status)==1)
                {
                    window.location=msg.txt;
                }
                else if(parseInt(msg.status)==0)
                {
                    error(1,msg.txt);
                }

                hideshow('loading',0);
            }
        });

    }


    function hideshow(el,act)
    {
        if(act) $('#'+el).css('visibility','visible');
        else $('#'+el).css('visibility','hidden');
    }

    function error(act,txt)
    {
        hideshow('error',act);
        if(txt) $('#error').html(txt);
    }

1 个答案:

答案 0 :(得分:0)

因此,必须有一种简单的方法可以在提交之前将reCaotcha添加为我的注册表单的最后一步。