Invisible ReCaptcha with jQuery ajax
问题 I am trying to implement the newest ReCaptcha (aka "invisible" ReCaptcha) within an form using jQuery and an "ajax" request. ReCaptcha documentation: https://developers.google.com/recaptcha/docs/invisible My form: <form id="myForm" > <input type="email" name="email" /><br /> <input type="password" name="password" /><br/> <!--<input type="submit" value="log in" />--> <button class="g-recaptcha" data-sitekey="6LdK..." data-callback="onSubmit">log in</button> </form> <div id="status"></div> My