1
有誰知道在本地驗證Google reCaptcha何時完成的方法嗎?我想在用戶完成驗證碼時自動提交表單 - 使用完成驗證碼作爲一種提交按鈕。在本地檢查reCaptcha驗證
<div class="g-recaptcha" data-sitekey="KEY"></div>
<button name='submitting' value='sub'>Submit</button></br></div>
有誰知道在本地驗證Google reCaptcha何時完成的方法嗎?我想在用戶完成驗證碼時自動提交表單 - 使用完成驗證碼作爲一種提交按鈕。在本地檢查reCaptcha驗證
<div class="g-recaptcha" data-sitekey="KEY"></div>
<button name='submitting' value='sub'>Submit</button></br></div>
想通了,
<script>function submitCap() { alert('Captcha Completed'); }</script>
<div class="g-recaptcha" data-callback='submitCap' data-sitekey="KEY"></div>