在同一页面上验证多个 recaptcha (V2)
Validate multiple recaptcha (V2) on the same page
我想知道当同一页面上有多个时如何验证 Recaptcha 客户端。我找到了这个 ,我有一个就可以了。
但是现在我在每个页面的页脚都有一个,在一些注册表中也有一个,所以主题有可能同时出现。
如有任何建议,我将不胜感激。谢谢。 :)
Simplest Way to validate as much g-captcha validate
首先,您在 </head>
标签之前包含 api.js,如下所示
<script src="https://www.google.com/recaptcha/api.js?onload=CaptchaCallback&render=explicit"></script>
将此代码添加到您的 HTML
<div class="g-recaptcha-contact" data-sitekey="Your Site Key" id="RecaptchaField2"></div>
<input type="hidden" class="hiddenRecaptcha" name="ct_hiddenRecaptcha" id="ct_hiddenRecaptcha">
<div class="g-recaptcha-quote" data-sitekey="Your Site Key" id="RecaptchaField1"></div>
<input type="hidden" class="hiddenRecaptcha" name="qt_hiddenRecaptcha" id="qt_hiddenRecaptcha">
在页脚中使用 <script>
标记添加此代码后
var CaptchaCallback = function() {
var widgetId1;
var widgetId2;
widgetId1 = grecaptcha.render('RecaptchaField1', {'sitekey' : 'Your Site Key', 'callback' : correctCaptcha_quote});
widgetId2 = grecaptcha.render('RecaptchaField2', {'sitekey' : 'Your Site Key', 'callback' : correctCaptcha_contact});
};
var correctCaptcha_quote = function(response) {
$("#qt_hiddenRecaptcha").val(response);
};
var correctCaptcha_contact = function(response) {
$("#ct_hiddenRecaptcha").val(response);
};
开发人员的最后一个简单步骤添加Jquery验证如下
$("#form_id").validate({
ignore: [],
rules: {
ct_hiddenRecaptcha: { required: true, },
qt_hiddenRecaptcha: { required: true, },
},
});
我想知道当同一页面上有多个时如何验证 Recaptcha 客户端。我找到了这个 ,我有一个就可以了。
但是现在我在每个页面的页脚都有一个,在一些注册表中也有一个,所以主题有可能同时出现。
如有任何建议,我将不胜感激。谢谢。 :)
Simplest Way to validate as much g-captcha validate
首先,您在 </head>
标签之前包含 api.js,如下所示
<script src="https://www.google.com/recaptcha/api.js?onload=CaptchaCallback&render=explicit"></script>
将此代码添加到您的 HTML
<div class="g-recaptcha-contact" data-sitekey="Your Site Key" id="RecaptchaField2"></div>
<input type="hidden" class="hiddenRecaptcha" name="ct_hiddenRecaptcha" id="ct_hiddenRecaptcha">
<div class="g-recaptcha-quote" data-sitekey="Your Site Key" id="RecaptchaField1"></div>
<input type="hidden" class="hiddenRecaptcha" name="qt_hiddenRecaptcha" id="qt_hiddenRecaptcha">
在页脚中使用 <script>
标记添加此代码后
var CaptchaCallback = function() {
var widgetId1;
var widgetId2;
widgetId1 = grecaptcha.render('RecaptchaField1', {'sitekey' : 'Your Site Key', 'callback' : correctCaptcha_quote});
widgetId2 = grecaptcha.render('RecaptchaField2', {'sitekey' : 'Your Site Key', 'callback' : correctCaptcha_contact});
};
var correctCaptcha_quote = function(response) {
$("#qt_hiddenRecaptcha").val(response);
};
var correctCaptcha_contact = function(response) {
$("#ct_hiddenRecaptcha").val(response);
};
开发人员的最后一个简单步骤添加Jquery验证如下
$("#form_id").validate({
ignore: [],
rules: {
ct_hiddenRecaptcha: { required: true, },
qt_hiddenRecaptcha: { required: true, },
},
});