ReCaptcha 2.0: enable Submit button on callback if recaptcha successful

孤人 提交于 2019-11-28 15:38:45
panda.o24

i did the same thing on my test site. however, i used a button instead of submit, so here:

you must add the property data-callback="enableBtn" data-callback property executes the function specified after accomplishment of recaptcha.

<div class="g-recaptcha" data-sitekey="############-#####" data-callback="enableBtn"></div>

and set the id of the button to whatever id you want to:

<input type="button" value="Submit" id="button1">

On Page load/form load of disable the button

 document.getElementById("button1").disabled = true;

then on javascript make a function to enable the button

 function enableBtn(){
    document.getElementById("button1").disabled = false;
   }

hope it helps.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!