Código HTML:
Ver original
<html> <head> <style> form,td{font:normal 10px/10px verdana;} input{font:normal 10px/10px verdana;border:solid 1px black} </style> <script> //busca caracteres que no sean espacio en blanco en una cadena function vacio(q) { for ( i = 0; i < q.length; i++ ) { if ( q.charAt(i) != " " ) { return true } } return false } function comprobar(F) { document.getElementById('spcuent').innerHTML =""; document.getElementById('spemail').innerHTML =""; document.getElementById('spreemail').innerHTML =""; document.getElementById('spnom').innerHTML =""; document.getElementById('spape').innerHTML =""; //valida que el campo no este vacio y no tenga solo espacios en blanco if( vacio(F.cuenta.value) == false ) { document.getElementById('spcuent').innerHTML = "La cuenta no puede estar en blanco"; document.getElementById('spcuent').style.color = "red"; cu=1; } if( vacio(F.email.value) == false ) { document.getElementById('spemail').innerHTML = "El E-Mail no puede estar en blanco"; document.getElementById('spemail').style.color = "red"; em=1; } if( vacio(F.reemail.value) == false ) { document.getElementById('spreemail').innerHTML = "El Re E-Mail no puede estar en blanco"; document.getElementById('spreemail').style.color = "red"; rem=1; } if( vacio(F.nombres.value) == false ) { document.getElementById('spnom').innerHTML = "El nombre no puede estar en blanco"; document.getElementById('spnom').style.color = "red"; no=1; } if( vacio(F.apellidos.value) == false ) { document.getElementById('spape').innerHTML = "El aplellido no puede estar en blanco"; document.getElementById('spape').style.color = "red"; ap=1; } if(cu==1 && em==1 && rem==1 && no==1 && ap==1){ return false }else{ return true } }//fin de comprobar </script> </head> <body> <form action="good.html" onsubmit="return comprobar(this)" autocomplete="on"> <table> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> </table> </form> </body> </html>