gpt4 book ai didi

javascript - 如何重新加载 reCaptcha v3?

转载 作者:行者123 更新时间:2023-11-30 19:14:46 24 4
gpt4 key购买 nike

我查看了 Google 文档,但没有找到有关重新加载 reCaptcha v3 的信息。 https://developers.google.com/recaptcha/docs/v3

我该怎么做?

最佳答案

reCaptcha V3 在一个不可见的验证码中,它自动检测用户行为并对其进行评分,无需重新加载或用户直接交互用户界面。

reCAPTCHA v3 returns a score for each request without user friction.The score is based on interactions with your site and enables you totake an appropriate action for your site.

reCAPTCHA v2 重置

grecaptcha.reset();

reCAPTCHA v3 重置

调用在页面上呈现的 grecaptcha.execute() 函数,将按外观重置值。 ( Google Recaptcha V3 - Widget Id when loading captcha through URL )

    grecaptcha.execute('[Your recaptcha ID]', {
action: 'general_form_contact_us'
}).
then(function(token) {
document.querySelector('.g-recaptcha-response-v3-contact_us').value = token;
});

注意您需要相应地调整所有值。

您可以通过复制并粘贴到 Chrome 控制台来测试它。按回车键后,它会更改隐藏字段的值。

关于javascript - 如何重新加载 reCaptcha v3?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58114386/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com