在我的网站中添加一个 recaptcha 之前,我有一个表单,用于用户将所有用户输入发布到我的数据库中。但是,如果有一个字段仍然为空或值为 0,我会禁用提交按钮。我使用 jQuery 来完成此操作我尝试过使用 val() 方法来捕获 recaptcha valeu 之类的东西,但似乎不起作用。这是我的 jQuery,用于在检查所有字段后启用提交或禁用它:$('#identity-next').attr('disabled', true); //disable the buttonfunction checkFilled() { $('form').on('keyup change', function () { if ($(name).val() != "" && $(birth_place).val() != 0 && $(birth_date).val() != "" && $(email).val() != "" && $(phone_number).val() != "" && $(address_province).val() != 0 && $(address_regency).val() != 0 && $(address_district).val() != 0 && $(specify_address).val() != 0 && $(captcha).val() != "") // the one that's not working { $('#identity-next').attr('disabled', false); return true; } else { $('#identity-next').attr('disabled', true); return false; } }); }checkFilled() //call the function这是我的验证码 div:<div id="captcha" name="g-recaptcha" class="g-recaptcha" data-sitekey="########################"></div> {!! NoCaptcha::renderJs() !!}<span class="text-danger">{{ $errors->first('g-recaptcha-response') }} </span>所以我希望我的 jquery 函数可以处理相同的功能,以便在所有字段都不为空时启用提交按钮,包括我的 recaptcha,我正在使用 recaptcha V2 btw。在这种情况下,我的按钮将保持禁用状态,因为验证码根本不返回任何值(?)。此致!。
1 回答
慕运维8079593
TA贡献1876条经验 获得超5个赞
您的问题的解决方案是这样的:
if($("#g-recaptcha-response").val()!="") {
//show button
}
添加回答
举报
0/150
提交
取消