我已将此作为我网站上需要验证码的表单的起点,但是在添加后,它不会提交到action.php页面以移动用户。
我能做什么才会提交?
http://jsfiddle.net/swade/M5rvh/
// Top of yourTwigFile.html.twig
{% form_theme form 'YourAppYourBundle:Form:fields.html.twig' %}
答案 0 :(得分:0)
默认操作是您始终阻止的表单提交。 如果您的验证码不匹配,请阻止它。
$('#form').on('submit', function(e){
if( $auth.val() != mathenticate.solve() )
{
e.preventDefault();
alert('wrong answer!');
}
});