Reload reCaptcha after ajaxComplete

2019-06-15 18:27发布

问题:

My reCaptcha is not reloading when ajaxComplete event complete.

I have a console error: "No reCAPTCHA clients exist." So why my reCaptcha client disappeared after ajaxComplete?

Here is my sample code:

 $(document).ajaxComplete(function (event, request, settings) {
         grecaptcha.reset(); });

回答1:

Adding the grecaptcha.render('recaptchaId'); solved the problem.

So, the updated code is:

 $(document).ajaxComplete(function (event, request, settings) {
         grecaptcha.render('recaptchaWıdgetId'); });