是否可以使用没有任何JavaScript的Google reCAPTCHA v3?我在网上遵循了许多教程,例如本教程,它们似乎都需要一些JavaScript才能实现。
<script>
grecaptcha.ready(function () {
grecaptcha.execute('YOUR_RECAPTCHA_SITE_KEY', { action: 'contact' }).then(function (token) {
var recaptchaResponse = document.getElementById('recaptchaResponse');
recaptchaResponse.value = token;
});
});
</script>
我只想在HTML和PHP中使用它。
https://stevencotterill.com/articles/adding-google-recaptcha-v3-to-a-php-form