Código:
Para llamar la validación hago lo siguiente :function valida() { falta = ""; valor = document.getElementById("cedula").value; if( valor == null || valor.length == 0 || /^\s+$/.test(valor) ) { falta += "\n * Cédula "; } valor = document.getElementById("apellido").value; if( valor == null || valor.length == 0 || /^\s+$/.test(valor) ) { falta += "\n * Apellido "; } valor = document.getElementById("nombre").value; if( valor == null || valor.length == 0 || /^\s+$/.test(valor) ) { falta += "\n * Nombre "; } valor = document.getElementById("fecha").value; if( valor == null || valor.length == 0 || /^\s+$/.test(valor) ) { falta += "\n * Fecha "; } if (falta != "") { falta ="Favor completar los siguientes datos:\n" + falta + "\n¡Rellene los datos y pruebe de nuevo!"; alert(falta); //return false; }else{ //return true; document.form1.submit() } }
Código:
<input type="button" name="Submit" value="validar" onClick="valida()" >