我正在做一个验证过程,我需要2个建议一个是我做的方式是否正确?以及如何验证文件字段?
有人告诉我正确的方法吗?
var validateForm = function(form){
var submit = form.find(':submit'),
elements = form.find(':input'),
status = true;
$('#contactForm').submit(function(event){
$(elements).each(function(){
var need = $(this).data('required');
if(need === 'text' && !$.trim($(this).val()).length){
$(this).css({border:'1px solid red'});
status = false;
}else{
status = true;
}
if(need === 'textarea' && !$.trim($(this).val()).length){
status = false;
}else{
status = true;
}
if(need === 'checkbox' && !$(this).prop('checked')){
status = false;
}else{
status = true;
}
if(need === 'file'){
//how to check the file elment?
}else{
status = true;
}
})
return status;
})
}
预先感谢!