15/11/2010, 10:17
|
| | Fecha de Ingreso: noviembre-2010
Mensajes: 2
Antigüedad: 14 años, 2 meses Puntos: 0 | |
Validar Checkbox+TextBox+Select Hola a todos, espero q me puedan ayudar.
Estoy haciendo un codigo para un form el cual tiene 12 checkbox y cada uno tiene su propio text y select.
Este es el codigo.
function validate(form1){
for(var i = 0; i < form1.chk.length; i++){
if(form1.chk[i].checked)return otravalidate();}
alert('Debes seleccionar al menos una opcion');
return false;
}
function otravalidate(){
if (!form1.t1.value || document.form1.cb1.value==0){
alert ("No ha rellenado todos los campos obligatorios");
return false;
}
if (!form1.t2.value || document.form1.cb2.value==0){
alert ("No ha rellenado todos los campos obligatorios");
return false;
}
}
Lo que deseo es que cuando el usuario pinche 1 o mas checkboxs se valide su text y su select. Y al pinchar el button mande la pagina.
y este es mi button.
<input height="40" align="right" width="140" id="Button1" type="image" value="button" src="Imagenes/ProcesarTest1.png" onmouseover='this.src=Imagenes/ProcesarTest2.png;' onmouseout='this.src=Imagenes/ProcesarTest1.png' onclick="return validate(form1)"/>
Le agradeceria su ayuda . |