Recaptcha回调方法不起作用

时间:2016-03-22 13:33:08

标签: javascript google-chrome recaptcha

我试图在我加载recaptacha后触发回调但是它不会加载回调。

取自https://developers.google.com/recaptcha/docs/display#example

    grecaptcha.render('example3', {
      'sitekey' : 'your_site_key',
      'callback' : verifyCallback,
      'theme' : 'dark'
    });

在我的例子中我正在做:

        grecaptcha.render('recaptcha', {
            'sitekey': config.recaptcha.id,
            'callback': function(){
                  console.info('something'); 
             }
        });

回调函数永远不会执行。然而,reCacptcha将加载到页面中。

Chrome的最新版本

0 个答案:

没有答案