【发布时间】:2012-03-02 17:07:42
【问题描述】:
我的网站上有一个表格。单击提交按钮时,会运行一个函数来获取每个字段的内容,根据 RegEx 和其他要求验证内容,然后如果一切正常,则通过 Ajax 将表单提交到 .php 邮件程序。
我希望表单在输入字段值发生变化时自动验证,或者当输入字段失去焦点时(我没有偏好,要么很好)然后我希望表单仅在以下情况下提交用户单击表单上的提交按钮。如果用户在所有字段都有效之前单击提交按钮,我不希望表单提交。
这是我的代码:
//contact form validation
$(function(){
$('.error').hide();
// hide error messages onchange
$("#contact-form").change(function(){
$('.error').hide();
$("label#name_error").hide();
$("label#invalid_error").hide();
$("label#email_error").hide();
$("label#invalid_phone_error").hide();
$("label#phone_error").hide();
$("label#zip_error").hide();
});
// validate fields on click
$(".cool-button").click(function(){
$('.error').hide();
$("label#name_error").hide();
$("label#invalid_error").hide();
$("label#email_error").hide();
$("label#invalid_phone_error").hide();
$("label#phone_error").hide();
$("label#zip_error").hide();
var name=$("input#contact_name").val();
var email=$("input#contact_email").val();
var emailRegEx =/^([a-zA-Z0-9])(([a-zA-Z0-9])*([\._-])?([a-zA-Z0-9]))*@(([a-zA-Z0-9\-])+(\.))+([a-zA-Z]{2,4})+$/
var phone=$("input#contact_phone").val();
var phone=phone.replace(/\s+-/g, "");
var phoneRegEx = /^(1-?)?\s?(\([2-9]\d{2}\)|\s?-?[2-9]\d{2})-?\s?[2-9]\d{2}-?\d{4}$/
var zip=$("input#contact_zip").val();
var best_time=$("input#contact_best_time").val();
var message=$("textarea#contact_message").val();
var timestamp=$("input#timestamp").val();
if(name==""){
$("label#name_error").show();
$("input#contact_name").focus();return false;
}
if(email==""){
$("label#email_error").show();
$("input#contact_email").focus();return false;
}
if (document.getElementById('contact_email').value.search(emailRegEx )==-1) {
$("label#invalid_error").show();
$("input#contact_email").focus();return false;
}
if(phone==""){
$("label#phone_error").show();
$("input#contact_phone").focus();return false;
}
if (document.getElementById('contact_phone').value.search(phoneRegEx )==-1) {
$("label#invalid_phone_error").show();
$("input#contact_phone").focus();return false;
}
if(zip==""){
$("label#zip_error").show();
$("input#contact_zip").focus();return false;
}
if(message==""){
$("label#message_error").show();
$("textarea#contact_message").focus();return false;
}
else {
var dataString='contact_name='+name+'&contact_email='+email+'&contact_phone='+phone+'&contact_zip='+zip+'&contact_best_time='+best_time+'×tamp='+timestamp+'&contact_message='+encodeURIComponent(message);
$.ajax({
type:"POST",
url:"php/contact.php",
data:dataString,
success:function(){$('#contact-form').html("<div id='message'></div>");$('#message').html("<h3>Message Sent</h3>").append("<p>Thank you for contacting us. We'll be in touch. <br /><br />If you have any further questions, you can always email us at info@wirecrafters.com or call us at 800-924-9473</p>").hide().fadeIn(800,function(){$('#message').append("<img id='checkmark' src='images/submit2.png' />");});}});
}
return false;
});
});
这是表单的 HTML 和 PHP 代码
<form id="contact-form" method="post" action="#">
<p class="form-subscr-field">
<label for="contact_name" id="contact_name_label">Your name: *</label>
<input id="contact_name" type="text" name="contact_name" class="inputbox" size="10" required/>
<label class="error error-tip" for="contact_name" id="name_error" style="display: none; ">Please enter your name.</label>
</p>
<p class="form-subscr-field">
<label for="contact_email" id="contact_email_label">E-mail Address: *</label>
<input id="contact_email" type="email" name="contact_email" class="inputbox" size="10" required/>
<label class="error error-tip" for="contact_email" id="email_error" style="display: none; ">Please enter your email address.</label>
<label class="error error-tip" for="contact_email" id="invalid_error" style="display: none; ">Invalid email address.</label>
</p>
<fieldset class="w50">
<p class="form-subscr-field rowElem left">
<label for="contact_phone" id="contact_phone_label">Phone: *</label>
<input id="contact_phone" type="tel" name="contact_phone" class="inputbox" size="10" required minlength="9"/>
<label class="error error-tip" for="contact_phone" id="phone_error" style="display: none; ">Please enter your phone number.</label>
<label class="error error-tip" for="contact_phone" id="invalid_phone_error" style="display: none; ">Please enter a valid phone number.</label>
</p>
</fieldset>
<fieldset class="w50">
<p class="form-subscr-field rowElem right">
<label for="contact_zip" id="contact_zip_label">Zip Code: *</label>
<input id="contact_zip" type="text" name="contact_zip" class="inputbox" size="10" required minlength="5"/>
<label class="error error-tip" for="contact_zip" id="zip_error" style="display: none; ">Please enter your shipping zip code.</label>
</p>
</fieldset>
<p class="form-subscr-field">
<label for="contact_best_time" id="contact_best_time_label">Best time to Contact:</label>
<input id="contact_best_time" type="text" name="contact_best_time" class="inputbox" size="10" />
</p>
<p class="form-subscr-field">
<label for="contact_message" id="comment_label">Your message: *</label>
<textarea id="contact_message" name="contact_message" rows="8" cols="30" required minlength="2"></textarea>
<label class="error error-tip" for="contact_message" id="message_error" style="display: none; ">This field is required.</label>
</p>
<input type="hidden" id="timestamp" name="timestamp" value="<?php
$hourdiff = "2"; // hours diff btwn server and local time
$insertdate = date("l, d F Y h:i a",time() + ($hourdiff * 3600));
print ("$insertdate");
?>" />
<div class="submit-contact">
<p>
<input type="submit" name="submit" class="cool-button csbutton-color spot-action" id="contact_button" value="Submit" />
</p>
</div>
</form>
【问题讨论】:
-
只是好奇;你也在服务器上验证是吗?
-
立即验证的问题是,您将在还没有值的字段中显示错误。您必须手动分解它,这会很丑陋,或者使用某种插件/库(您可以自己编写)。
-
@Jeffery:为了确保我理解你的问题,解释一下你在服务器上验证的意思是什么?
-
用户很可能禁用 JavaScript 从而绕过验证,因此在客户端和服务器上进行验证通常是一种很好的做法。
-
我真正想要的是当输入框失去焦点时我的函数的第一部分工作,然后如果函数的第一部分说一切正常,如果用户点击提交按钮,表单提交(执行ELSE语句中的代码)
标签: javascript ajax jquery-validate validation