ReCaptcha 2.0: enable Submit button on callback if

2019-01-16 06:11发布

I have a very simple form as follows. I want to make it so that the Submit button is disabled, and only enabled after the user has successfully completed the ReCaptcha.

I'm assuming I'm going to need some Javascript / jQuery to do this.

Google's documentation on ReCaptcha 2.0 seems really sparse and dense (to me, anyway). I'd appreciate some pointers:

<form action="something.php" method="post">
    Name: <input type="text" size="40" name="name"><br><br>
    <div class="g-recaptcha" data-sitekey="############-#####"></div>
    <input type="submit" value="Submit" >
</form>

2条回答
狗以群分
2楼-- · 2019-01-16 06:23

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.

查看更多
Luminary・发光体
3楼-- · 2019-01-16 06:29

important!!! you MUST ADD A SECOND VERIFICATION ON THE POST PAGE, AFTER USING THIS BECAUSE THEY Can SIMPLY bypass this by element inspection

查看更多
登录 后发表回答