Estoy tratando de validar ingresos con javascript.
Si no se ingresa nada en el formulario, al presionar el botón no debiera continuar con la pagina, pero si lo hace.
PHP con Javascript
Acá tengo un vídeo en flash para que lo vean
http://sunsalt.netai.net/files/validacion_sigue.htm
acá tengo la pagina toda esta en html:
Código HTML:
Ver originalfunction comprobar(){
var mal=false;
numero=document.forms[0].elements.length;
for(a=0;a<numero;a++){
if (document.forms[0].elements[a].value==""){
document.forms[0].elements[a].style.backgroundColor="#ffffcc";
mal=true;
}
else{
document.forms[0].elements[a].style.backgroundColor="white";
}
}
if(mal){
alert("Por favor, rellene las cajas coloreadas");
}
else{document.forms[0].submit()}
}
<form action="ingresar1.php" method="post"> <table width="330" border="0" cellspacing="3" cellpadding="3"> <th width="94" scope="col"> </th> <th width="223" scope="col"> </th> <td><input type="text" name="txtclave1"></td> <td><input type="text" name="txtclave2"></td> <td><input type="submit" name="Submit" onclick="comprobar()" value="Ingresar"></td>