112

我在一个页面上有 2 个表单。其中一种形式一直显示recaptcha。另一个应该仅在某个事件(例如最大化登录尝试)之后才显示recaptcha。因此,有时我需要 2 个重新验证码才能出现在同一页面上。这可能吗?我知道我可能都可以使用一个,但我有布局的方式,我更喜欢有 2。谢谢。

更新:好吧,我想这可能是不可能的。有人可以推荐另一个捕获库与 reCaptcha 一起使用吗?我真的希望能够在同一页面上有 2 个验证码。

更新 2:如果将每个表单放在 iframe 中会怎样?这是一个可以接受的解决方案吗?

4

17 回答 17

218

使用当前版本的 Recaptcha(reCAPTCHA API 版本 2.0),您可以在一页上拥有多个 recaptcha。

无需克隆 recaptcha,也无需尝试解决问题。您只需为recaptchas 放置多个div 元素并在其中显式地呈现recaptchas。

这很容易使用 google recaptcha api:
https ://developers.google.com/recaptcha/docs/display#explicit_render

这是示例html代码:

<form>
    <h1>Form 1</h1>
    <div><input type="text" name="field1" placeholder="field1"></div>
    <div><input type="text" name="field2" placeholder="field2"></div>
    <div id="RecaptchaField1"></div>
    <div><input type="submit"></div>
</form>

<form>
    <h1>Form 2</h1>
    <div><input type="text" name="field3" placeholder="field3"></div>
    <div><input type="text" name="field4" placeholder="field4"></div>
    <div id="RecaptchaField2"></div>
    <div><input type="submit"></div>
</form>

在您的 javascript 代码中,您必须为 recaptcha 定义一个回调函数:

<script type="text/javascript">
    var CaptchaCallback = function() {
        grecaptcha.render('RecaptchaField1', {'sitekey' : '6Lc_your_site_key'});
        grecaptcha.render('RecaptchaField2', {'sitekey' : '6Lc_your_site_key'});
    };
</script>

在此之后,您的 recaptcha 脚本 url 应如下所示:

<script src="https://www.google.com/recaptcha/api.js?onload=CaptchaCallback&render=explicit" async defer></script>

或者,您可以提供一个类名并使用您的类选择器循环这些元素并调用 .render(),而不是为您的 recaptcha 字段提供 ID

于 2015-01-24T14:06:51.213 回答
82

简单明了:

1)通常使用以下方法创建您的recaptcha字段:

<div class="g-recaptcha" data-sitekey="YOUR_KEY_HERE"></div>

2)用这个加载脚本:

<script src="https://www.google.com/recaptcha/api.js?onload=CaptchaCallback&render=explicit" async defer></script>

3)现在调用它来迭代字段并创建recaptchas:

<script type="text/javascript">
  var CaptchaCallback = function() {
    jQuery('.g-recaptcha').each(function(index, el) {
        grecaptcha.render(el, {
            'sitekey' : jQuery(el).attr('data-sitekey')
            ,'theme' : jQuery(el).attr('data-theme')
            ,'size' : jQuery(el).attr('data-size')
            ,'tabindex' : jQuery(el).attr('data-tabindex')
            ,'callback' : jQuery(el).attr('data-callback')
            ,'expired-callback' : jQuery(el).attr('data-expired-callback')
            ,'error-callback' : jQuery(el).attr('data-error-callback')
        });
    });
  };
</script>
于 2015-11-05T02:43:15.317 回答
15

一个类似的问题被问到关于在 ASP 页面(链接)上执行此操作,并且那里的共识是无法使用 recaptcha。似乎单个页面上的多个表单必须共享验证码,除非您愿意使用不同的验证码。如果您没有被 recaptcha 锁定,那么可以看看 Zend Frameworks Zend_Captcha 组件(链接)。它包含一些

于 2009-08-06T22:59:05.010 回答
15

这个答案是对@raphadko答案的扩展。

如果您需要手动提取验证码(如在 ajax 请求中),您必须调用:

grecaptcha.getResponse(widget_id)

但是如何检索小部件 id 参数?

我使用CaptchaCallback的这个定义来存储每个 g-recaptcha 框的小部件 id(作为 HTML 数据属性):

var CaptchaCallback = function() {
    jQuery('.g-recaptcha').each(function(index, el) {
        var widgetId = grecaptcha.render(el, {'sitekey' : 'your code'});
        jQuery(this).attr('data-widget-id', widgetId);
    });
};

然后我可以打电话:

grecaptcha.getResponse(jQuery('#your_recaptcha_box_id').attr('data-widget-id'));

提取代码。

于 2017-01-25T19:30:27.087 回答
13

这可以通过 jQuery 的clone()函数轻松完成。

因此,您必须为 recaptcha 创建两个包装器 div。我的第一个表单的recaptcha div:

<div id="myrecap">
    <?php
        require_once('recaptchalib.php');
        $publickey = "XXXXXXXXXXX-XXXXXXXXXXX";
        echo recaptcha_get_html($publickey);
    ?>
</div>

第二种形式的 div 为空(不同的 ID)。所以我的只是:

<div id="myraterecap"></div>

然后javascript非常简单:

$(document).ready(function() {
    // Duplicate our reCapcha 
    $('#myraterecap').html($('#myrecap').clone(true,true));
});

可能不需要带有truein 值的第二个参数clone(),但拥有它并没有什么坏处......这种方法的唯一问题是如果您通过 ajax 提交表单,问题是您有两个元素同名,你必须更聪明地捕捉正确元素的值(reCaptcha 元素的两个 id#recaptcha_response_field和 #recaptcha_challenge_field 以防万一有人需要它们)

于 2011-09-29T20:20:09.863 回答
9

我知道这个问题很老,但以防将来有人会寻找它。一页上可以有两个验证码。粉红色的文档在这里:https ://developers.google.com/recaptcha/docs/display 下面的示例只是一个副本表单文档,您不必指定不同的布局。

<script type="text/javascript">
  var verifyCallback = function(response) {
    alert(response);
  };
  var widgetId1;
  var widgetId2;
  var onloadCallback = function() {
    // Renders the HTML element with id 'example1' as a reCAPTCHA widget.
    // The id of the reCAPTCHA widget is assigned to 'widgetId1'.
    widgetId1 = grecaptcha.render('example1', {
      'sitekey' : 'your_site_key',
      'theme' : 'light'
    });
    widgetId2 = grecaptcha.render(document.getElementById('example2'), {
      'sitekey' : 'your_site_key'
    });
    grecaptcha.render('example3', {
      'sitekey' : 'your_site_key',
      'callback' : verifyCallback,
      'theme' : 'dark'
    });
  };
</script>
于 2015-07-30T09:00:08.357 回答
6

grecaptcha.getResponse()方法接受一个可选的“widget_id”参数,如果未指定,则默认为创建的第一个小部件。grecaptcha.render()每个创建的小部件的方法都会返回一个 widget_id ,它与reCAPTCHA 容器的属性无关!!id

每个 reCAPTCHA 都有自己的响应数据。您必须给 reCAPTCHA div 一个 ID 并将其传递给getResponse方法:

例如

<div id="reCaptchaLogin"
     class="g-recaptcha required-entry"
     data-sitekey="<?php echo $this->helper('recaptcha')->getKey(); ?>"
     data-theme="<?php echo($this->helper('recaptcha')->getTheme()); ?>"
     style="transform:scale(0.82);-webkit-transform:scale(0.82);transform-origin:0 0;-webkit-transform-origin:0 0;">
</div>


<script type="text/javascript">
  var CaptchaCallback = function() {
    jQuery('.g-recaptcha').each(function(index, el) {
        grecaptcha.render(el, {
            'sitekey' : jQuery(el).attr('data-sitekey')
            ,'theme' : jQuery(el).attr('data-theme')
            ,'size' : jQuery(el).attr('data-size')
            ,'tabindex' : jQuery(el).attr('data-tabindex')
            ,'callback' : jQuery(el).attr('data-callback')
            ,'expired-callback' : jQuery(el).attr('data-expired-callback')
            ,'error-callback' : jQuery(el).attr('data-error-callback')
        });
    });
  };
</script>

<script src="https://www.google.com/recaptcha/api.js?onload=CaptchaCallback&render=explicit" async defer></script>

访问响应:

var reCaptchaResponse = grecaptcha.getResponse(0);

或者

var reCaptchaResponse = grecaptcha.getResponse(1);
于 2018-09-12T15:23:13.930 回答
4

这是raphadkonoun提供的答案的无 JQuery 版本。

1)通常使用以下方法创建您的recaptcha字段:

<div class="g-recaptcha"></div>

2)用这个加载脚本:

<script src="https://www.google.com/recaptcha/api.js?onload=CaptchaCallback&render=explicit" async defer></script>

3)现在调用它来迭代字段并创建recaptchas:

var CaptchaCallback = function() {
    var captchas = document.getElementsByClassName("g-recaptcha");
    for(var i = 0; i < captchas.length; i++) {
        grecaptcha.render(captchas[i], {'sitekey' : 'YOUR_KEY_HERE'});
    }
};
于 2017-06-28T15:00:04.917 回答
4

我在页脚中有始终显示的联系表单,并且某些页面(例如创建帐户)也可以有验证码,因此它是动态的,我正在使用 jQuery 的下一种方式:

html:

<div class="g-recaptcha" id="g-recaptcha"></div>

<div class="g-recaptcha" id="g-recaptcha-footer"></div>

javascript

<script src="https://www.google.com/recaptcha/api.js?onload=CaptchaCallback&render=explicit&hl=en"></script>
<script type="text/javascript">
  var CaptchaCallback = function(){        
      $('.g-recaptcha').each(function(){
        grecaptcha.render(this,{'sitekey' : 'your_site_key'});
      })
  };
</script>
于 2015-11-18T08:30:30.757 回答
2

查看页面的源代码,我采用了 reCaptcha 部分并稍微更改了代码。这是代码:

HTML:

<div class="tabs">
    <ul class="product-tabs">
        <li id="product_tabs_new" class="active"><a href="#">Detailed Description</a></li>
        <li id="product_tabs_what"><a href="#">Request Information</a></li>
        <li id="product_tabs_wha"><a href="#">Make Offer</a></li>
    </ul>
</div>

<div class="tab_content">
    <li class="wide">
        <div id="product_tabs_new_contents">
            <?php $_description = $this->getProduct()->getDescription(); ?>
            <?php if ($_description): ?>
                <div class="std">
                    <h2><?php echo $this->__('Details') ?></h2>
                    <?php echo $this->helper('catalog/output')->productAttribute($this->getProduct(), $_description, 'description') ?>
                </div>
            <?php endif; ?>
        </div>
    </li>

    <li class="wide">
        <label for="recaptcha">Captcha</label>
        <div id="more_info_recaptcha_box" class="input-box more_info_recaptcha_box"></div>
    </li>

    <li class="wide">
        <label for="recaptcha">Captcha</label>
        <div id="make_offer_recaptcha_box" class="input-box make_offer_recaptcha_box"></div>
    </li>
</div>

jQuery:

<script type="text/javascript" src="http://www.google.com/recaptcha/api/js/recaptcha_ajax.js"></script>
<script type="text/javascript">
    jQuery(document).ready(function() {
        var recapExist = false;
      // Create our reCaptcha as needed
        jQuery('#product_tabs_what').click(function() {
            if(recapExist == false) {
                Recaptcha.create("<?php echo $publickey; ?>", "more_info_recaptcha_box");
                recapExist = "make_offer_recaptcha_box";
            } else if(recapExist == 'more_info_recaptcha_box') {
                Recaptcha.destroy(); // Don't really need this, but it's the proper way
                Recaptcha.create("<?php echo $publickey; ?>", "more_info_recaptcha_box");
                recapExist = "make_offer_recaptcha_box";
            }
        });
        jQuery('#product_tabs_wha').click(function() {
            if(recapExist == false) {
                Recaptcha.create("<?php echo $publickey; ?>", "make_offer_recaptcha_box");
                recapExist = "more_info_recaptcha_box";
            } else if(recapExist == 'make_offer_recaptcha_box') {
                Recaptcha.destroy(); // Don't really need this, but it's the proper way (I think :)
                Recaptcha.create("<?php echo $publickey; ?>", "make_offer_recaptcha_box");
                recapExist = "more_info_recaptcha_box";
            }
        });
    });
</script>

我在这里使用简单的 javascript 选项卡功能。因此,没有包含该代码。

当用户单击“请求信息”时(#product_tabs_what),JS 将检查是否recapExist具有false某些价值。如果它有一个值,那么这将调用Recaptcha.destroy();以销毁旧加载的 reCaptcha 并为此选项卡重新创建它。否则,这只会​​创建一个 reCaptcha 并放入#more_info_recaptcha_boxdiv。与“提出要约”#product_tabs_wha选项卡相同。

于 2013-06-27T08:18:22.340 回答
2

在raphadko的回答中添加一点:由于您有多个验证码(在一页上),因此您不能使用(通用)g-recaptcha-responsePOST 参数(因为它只包含一个验证码的响应)。相反,您应该grecaptcha.getResponse(opt_widget_id)对每个验证码使用 call。这是我的代码(前提是每个验证码都在其表单内):

HTML:

<form ... />

<div id="RecaptchaField1"></div>

<div class="field">
  <input type="hidden" name="grecaptcha" id="grecaptcha" />
</div>

</form>

<script src="https://www.google.com/recaptcha/api.js?onload=CaptchaCallback&render=explicit" async defer></script>

JavaScript:

var CaptchaCallback = function(){
    var widgetId;

    $('[id^=RecaptchaField]').each(function(index, el) {

         widgetId = grecaptcha.render(el.id, {'sitekey' : 'your_site_key'});

         $(el).closest("form").submit(function( event ) {

            this.grecaptcha.value = "{\"" + index + "\" => \"" + grecaptcha.getResponse(widgetId) + "\"}"

         });
    });
};

请注意,我将事件委托(请参阅append element 之后的刷新 DOM)应用于所有动态修改的元素。这将每个人的 captha 的响应绑定到它的表单submit事件。

于 2016-08-22T14:08:29.660 回答
2

var ReCaptchaCallback = function() {
    	 $('.g-recaptcha').each(function(){
    		var el = $(this);
    		grecaptcha.render(el.get(0), {'sitekey' : el.data("sitekey")});
    	 });  
        };
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://www.google.com/recaptcha/api.js?onload=ReCaptchaCallback&render=explicit" async defer></script>


ReCaptcha 1
<div class="g-recaptcha" data-sitekey="6Lc8WQcUAAAAABQKSITdXbc6p9HISCQhZIJwm2Zw"></div>

ReCaptcha 2
<div class="g-recaptcha" data-sitekey="6Lc8WQcUAAAAABQKSITdXbc6p9HISCQhZIJwm2Zw"></div>

ReCaptcha 3
<div class="g-recaptcha" data-sitekey="6Lc8WQcUAAAAABQKSITdXbc6p9HISCQhZIJwm2Zw"></div>

于 2016-09-23T14:52:33.403 回答
1

一个不错的选择是动态为每个表单生成一个recaptcha 输入(我已经完成了两个,但您可能会执行三个或更多表单)。我正在使用 jQuery、jQuery 验证和 jQuery 表单插件通过 AJAX 以及 Recaptcha AJAX API 发布表单 -

https://developers.google.com/recaptcha/docs/display#recaptcha_methods

当用户提交其中一种形式时:

  1. 拦截提交 - 我使用了 jQuery Form Plugin 的 beforeSubmit 属性
  2. 销毁页面上任何现有的 recaptcha 输入 - 我使用了 jQuery 的 $.empty() 方法和 Recaptcha.destroy()
  3. 调用 Recaptcha.create() 为特定表单创建一个 recaptcha 字段
  4. 返回假。

然后,他们可以填写验证码并重新提交表格。如果他们决定提交不同的表单,那么您的代码会检查现有的验证码,因此您一次在页面上只会有一个验证码。

于 2012-06-07T20:29:51.740 回答
1

这是一个基于许多出色答案的解决方案。此选项是 jQuery 免费的,并且是动态的,不需要您专门通过 id 定位元素。

1) 像往常一样添加您的 reCAPTCHA 标记:

<div class="g-recaptcha" data-sitekey="YOUR_KEY_HERE"></div>

2)将以下内容添加到文档中。它适用于任何支持querySelectorAll API的浏览器

<script src="https://www.google.com/recaptcha/api.js?onload=renderRecaptchas&render=explicit" async defer></script>
<script>
    window.renderRecaptchas = function() {
        var recaptchas = document.querySelectorAll('.g-recaptcha');
        for (var i = 0; i < recaptchas.length; i++) {
            grecaptcha.render(recaptchas[i], {
                sitekey: recaptchas[i].getAttribute('data-sitekey')
            });
        }
    }
</script>
于 2017-01-26T17:41:54.977 回答
0

有可能,只需覆盖 Recaptcha Ajax 回调。工作 jsfiddle:http: //jsfiddle.net/Vanit/Qu6kn/

您甚至不需要代理 div,因为覆盖后 DOM 代码将不会执行。每当您想再次触发回调时,请调用 Recaptcha.reload()。

function doSomething(challenge){
    $(':input[name=recaptcha_challenge_field]').val(challenge);
    $('img.recaptcha').attr('src', '//www.google.com/recaptcha/api/image?c='+challenge);
}

//Called on Recaptcha.reload()
Recaptcha.finish_reload = function(challenge,b,c){
    doSomething(challenge);
}

//Called on page load
Recaptcha.challenge_callback = function(){
    doSomething(RecaptchaState.challenge)
}

Recaptcha.create("YOUR_PUBLIC_KEY");
于 2014-02-17T09:37:42.213 回答
0

这是一个很好的指南,可以做到这一点:

http://mycodde.blogspot.com.ar/2014/12/multiple-recaptcha-demo-same-page.html

基本上,您将一些参数添加到 api 调用并手动呈现每个 recaptcha:

<script src="https://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit" async defer></script>
<script>
        var recaptcha1;
        var recaptcha2;
        var myCallBack = function() {
            //Render the recaptcha1 on the element with ID "recaptcha1"
            recaptcha1 = grecaptcha.render('recaptcha1', {
                'sitekey' : '6Lc_0f4SAAAAAF9ZA', //Replace this with your Site key
                'theme' : 'light'
            });

            //Render the recaptcha2 on the element with ID "recaptcha2"
            recaptcha2 = grecaptcha.render('recaptcha2', {
                'sitekey' : '6Lc_0f4SAAAAAF9ZA', //Replace this with your Site key
                'theme' : 'dark'
            });
        };
</script>

PS:“grecaptcha.render”方法接收一个ID

于 2017-01-04T20:44:21.530 回答
0

我会使用隐形的recaptcha。然后在您的按钮上使用“formname='yourformname'”之类的标签来指定要提交的表单并隐藏提交表单输入。

这样做的好处是它允许您保持 html5 表单验证的完整性,一个 recaptcha,但多个按钮界面。只需捕获 recaptcha 生成的令牌密钥的“验证码”输入值。

<script src="https://www.google.com/recaptcha/api.js" async defer ></script>

<div class="g-recaptcha" data-sitekey="yours" data-callback="onSubmit" data-size="invisible"></div>
<script>
var formanme = ''
$('button').on('click', function () { formname = '#'+$(this).attr('formname');
    if ( $(formname)[0].checkValidity() == true) { grecaptcha.execute(); }
    else { $(formname).find('input[type="submit"]').click() }
    });

var onSubmit = function(token) {
    $(formname).append("<input type='hidden' name='captcha' value='"+token+"' />");
    $(formname).find('input[type="submit"]').click()
    };
</script>

我发现这个 FAR 更简单,更容易管理。

于 2017-11-13T16:10:48.590 回答