我试图在我加载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的最新版本