php联系表单提交jquery验证

时间:2013-05-27 22:27:58

标签: php jquery validation

我有一个足够基本的联系表单,它使用jquery客户端验证。我开始在ajax中执行表单,但现在认为提交服务器端会更好,因为我需要一个成功页面来添加Google Analytics跟踪。 所以ajax形式是这样的:

    if (i == 0) {
    $.ajax({        
        beforeSend: preloader,
        type    : 'POST',
        url     : './ajax/contact-form.php',
        data    : $('#contact_form').serialize(),
        success : function(data) {
            $('#popup_form').html(data);
        }
    });
}

但现在我想把它改成

if (i == 0) // then go to success.php, else do not submit the form. 

i == 0显然是验证错误计数。那么如果我不= 0,我如何禁止提交表单?

如果有帮助,这是我的表格

<form action="success.php" id="contact_form" method="post">
<input id="contact_name" name="contact_name" placeholder="name*" type="text" /><span id="contact_name_validate"></span>
<input id="contact_company" name="contact_company" placeholder="company" type="text" />
<input id="contact_email" name="contact_email" placeholder="email*" type="text" /><span id="contact_email_validate"></span>
<input id="contact_telephone" name="contact_telephone" placeholder="telephone*" type="text" /><span id="contact_telephone_validate"></span>
<div id="contact_message"><textarea name="contact_message" placeholder="Enter your message..."></textarea></div>
<input id="contact_button" type="submit" value="Enquire Now" />

1 个答案:

答案 0 :(得分:2)

你要找的是假的吗?

if (i == 0) {
    return true; // submits the form if this is a button click / form submit event handler
}

return false; // notice this, stops form from submitting.