gpt4 book ai didi

jquery - reCaptcha 字段按要求填写

转载 作者:行者123 更新时间:2023-12-01 02:27:36 26 4
gpt4 key购买 nike

我正在尝试在表单中使用recaptcha,但是,我无法将其设置为必需。我尝试使用this的前两个答案的代码然而问题是,它们都不起作用。

这是我的标题代码:

<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.15.0/jquery.validate.min.js"></script>
<script src="https://www.google.com/recaptcha/api.js"></script>

这是我的body代码(我首先尝试了接受的问题):

<form action="some-page.php">
<fieldset>
<legend>Personal information:</legend>
First name:<br>
<input type="text" name="firstname" value="Name" required><br> Last name:<br>
<input type="text" name="lastname" value="Last Name" required><br><br>
<div class="g-recaptcha" data-sitekey="xxxx"></div>
<input type="hidden" name="recaptcha" data-rule-recaptcha="true">
<input type="submit" value="Submit">
</fieldset>
</form>

<script>
$('form').validate({
ignore: '.no-validation'
});

// Add our validation method for reCaptcha:
$.validator.addMethod("recaptcha", function(value, element) {
var grecaptcha = window.grecaptcha || null;
return !grecaptcha || grecaptcha.getResponse();
}, "Please fill reCAPTCHA");
</script>

最佳答案

function validateForm() {	
var recaptcha = document.forms["myForm"]["g-recaptcha-response"].value;
if (recaptcha == "") {
alert("Please fill reCAPTCHA");
return false;
}
}
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.3/jquery.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.15.0/jquery.validate.min.js"></script>
<script src="https://www.google.com/recaptcha/api.js"></script>



<form name="myForm" action="login.php" onsubmit="return validateForm()" method="post">
<fieldset>
<legend>Personal information:</legend>
First name:<br>
<input type="text" name="firstname" value="Name" required><br> Last name:<br>
<input type="text" name="lastname" value="Last Name" required><br><br>
<div class="g-recaptcha" data-sitekey="6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI"></div>
<input type="hidden" name="recaptcha" data-rule-recaptcha="true">
<input type="submit" value="Submit">
</fieldset>
</form>

关于jquery - reCaptcha 字段按要求填写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42657127/

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