我有一个非常简单的问卷表格,只需要几个字段是强制性的。如何向电子邮件字段添加电子邮件验证以确认其实际电子邮件。以及如何确认 zip_code 仅包含数字?如果不使用警报,我可以使用显示在表单上的 div 标签并告诉他们如果有人知道如何简单地添加它,他们需要填写什么,那也很棒。我正在使用 Twitter Bootstrap,并且很想使用他们的警告 div
$(document).ready(function(){
$('#contact_form').submit(function(){
if ($('#first_name').val() == '') {
alert('You must enter your first name!');
return false;
}
if ($('#last_name').val() == '') {
alert('You must enter your last name!');
return false;
}
if ($('#email').val() == '') {
alert('You must enter an email!');
return false;
}
if ($('#zip_code').val() == '') {
alert('You must enter your zip code!');
return false;
}
if ($('#message').val() == '') {
alert('You need to tell us something! Please enter your message!');
return false;
}
});
});