如何在同一页面和单一表单中多次调用google recaptcha

时间:2017-02-16 13:43:50

标签: recaptcha

我想在页面加载时加载google recaptcha,并在用户点击回复按钮时加载另一个。

1 个答案:

答案 0 :(得分:-1)

你只需要打电话:

grecaptcha.reset();

来自Javascript以重置验证码。所以,你可以这样做:

<script>

  function reply()
  {
    grecaptcha.reset();
    //do whatever else you need on reply
  }

</script>

<button onclick="reply()">Reply</button>