15/04/2004, 21:47
|
| | | Fecha de Ingreso: mayo-2002 Ubicación: Lima, Peru
Mensajes: 4.619
Antigüedad: 22 años, 8 meses Puntos: 7 | |
function comprobar(){
errores="";
ok=1;
for(a=0;a<regla.length;a++){
valor=document.forms[0].elements[a].value;
if(eval(regla[a])){
ok=0;
errores+=mensaje[a]+"<br>";
document.forms[0].elements[a].style.background=colorMal;}
else{document.forms[0].elements[a].style.background=colorBien;}
}
herror.style.background=(errores!="")?colorMal:col orBien;
herror.style.border=(errores!="")?"solid 1px black":"none";
herror.innerHTML=errores;
if (ok==1) {
return true;
} else {
return false;
}
}
__________________ No tengo firma ahora... :( |