到目前为止,这是我的代码:
<script type="text/javascript">
var widgetId1;
var onloadCallback = function() {
widgetId1 = grecaptcha.render('le_captcha', {
'sitekey' : 'xxx',
'theme' : 'light'
});
};
function check(){
alert(grecaptcha.getResponse(widgetId1));
}
function executeMeAfterSuccessfullValidation(){
alert('user passed');
}
</script>
<button onclick="check()">check if passed</button>
<div id="le_captcha"></div>
我希望在用户成功验证后调用executeMeAfterSuccessfullValidation
。
他们的文档中没有如何做的事情:https://developers.google.com/recaptcha/docs/display
但是我看到一些网站正在这样做。怎么样?
预先感谢