如何在HTML表单提交按钮上对Google reCaptcha进行valalidate

时间:2018-02-10 06:35:20

标签: forms validation recaptcha

我使用了以下表格: `                 

<fieldset>
<div class="zl-form-captcha">
    <div class="g-recaptcha" data-sitekey="my-key" style="text-align: center;"></div>
</div>      
</fieldset>

<fieldset>
  <p style="text-align: center;"><button name="submit" type="submit" id="contact-submit" data-submit="...Sending" class="wpcf7-form-control wpcf7-submit btn">Submit</button></p>
</fieldset>

`

如何在表单提交前验证google captcha表单?

感谢。

1 个答案:

答案 0 :(得分:2)

您无法在客户端(浏览器)上验证验证码,因此在提交之前无法对其进行验证。

在提交表单后,必须在服务器上进行验证码验证,因为它涉及使用其API调用google以验证验证码是否已正确回答请参阅此页面了解如何进行此验证:{{3} }。