私は、ユーザーがGoogleのrecaptchaをチェックして確認するとすぐにresultcaptchaメッセージを隠すことに興味があります。最初の部分(v.length == 0)だけが機能します。 else ifは動作しません。あなたは、こちらのフォームをチェックすることができます。https://csandreas1.herokuapp.comGoogle recaptcha validation with Jquery
if(grecaptcha.getResponse() == 0) // this works
{
$('#resultcaptcha').show();
$('#resultcaptcha').html('<i class="fa fa-exclamation-circle w3-text-red fa-3x" aria-hidden="true"></i> <span class="w3-text-white w3-bold" style="font-size:16px"> Please verify that you are a human</span>');
}
else if(grecaptcha.getResponse() == 1)//this doesn't work
{
$('#resultcaptcha').hide();
$('#resultcaptcha').html('');
}
else{//submit the form}
てみ '応答は1つの –
ハズレ以上の長さを持つトークンIDであるようv.length> 1 '、コンソールと実際に何を検査する –
ログイン応答を動作しません(Documentationを参照してください)含まれています。 – CBroe