Tag: laravel 4.2

错误:ReCAPTCHA占位符元素必须为空

我正在使用我的laravel应用程序的recaptcha。 我只是想检查使用jQuery的表单提交recaptcha的回应,并通过提醒validationvalidationcaptcha停止用户。 但是,即使未填写captcha,我也无法停止表单提交。 这是我的代码。 $('#payuForm').on('submit', function (e) { var response = grecaptcha.getResponse(); if(response.length == 0 || response == '' || response ===false ) { alert('Please validate captcha.'); e.preventDefault(); } }); <div class="captcha"> {{ View::make('recaptcha::display') }} </div> 我在浏览器控制台中得到这个错误,表单被提交。 Error: ReCAPTCHA placeholder element must be empty