Reset Multiple Google reCAPTCHA
问题 I have two forms on a single page which both use Google reCAPTCHA. Whenever i use grecaptcha.reset(); it only resets the first instance. The following JS renders the reCAPTCHA(s) var recaptcha1; var recaptcha2; var myCallBack = function() { //Render the recaptcha1 on the element with ID "recaptcha1" recaptcha1 = grecaptcha.render('recaptcha1', { 'sitekey' : '1234', //Replace this with your Site key 'theme' : 'light' }); //Render the recaptcha2 on the element with ID "recaptcha2" recaptcha2 =