Per un gruppo di input puoi utilizzare una versione migliorata basata sulla risposta di @ mikemaccana
$.fn.isValid = function(){
var validate = true;
this.each(function(){
if(this.checkValidity()==false){
validate = false;
}
});
};
ora puoi usarlo per verificare se il modulo è valido:
if(!$(".form-control").isValid){
return;
}
Puoi usare la stessa tecnica per ottenere tutti i messaggi di errore:
$.fn.getVelidationMessage = function(){
var message = "";
var name = "";
this.each(function(){
if(this.checkValidity()==false){
name = ($( "label[for=" + this.id + "] ").html() || this.placeholder || this.name || this.id);
message = message + name +":"+ (this.validationMessage || 'Invalid value.')+"\n<br>";
}
})
return message;
}