19/10/2007, 04:30
|
| Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 22 años, 11 meses Puntos: 61 | |
Re: RadioButton con nombre Pregunta[0]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script type="text/javascript">
function validar(frm){
numPreguntas = 3;// poneraquí el numero de preguntas
errores = new Array();
er = '';
for(i=1; i<numPreguntas+1; i++) {
errores[i] = false;
for(j=0; rad=frm['pregunta['+i+']'][j]; j++)
if (rad.checked) errores[i] = true;
}
for(i=1; i<numPreguntas+1; i++)
if(!errores[i]) er += ' '+i;
if(er != '')
{
alert('Debes contestar las Preguntas:'+er);
return false;
}
}
</script>
</head>
<body>
<form form name="form1" method="post" action="" onsubmit="return validar(this)">
<p>Pregunta 1:</p>
<input type='radio' id='pregunta[1]' name='pregunta[1]' value='14'/>
<input type='radio' id='pregunta[1]' name='pregunta[1]' value='14'/>
<input type='radio' id='pregunta[1]' name='pregunta[1]' value='14'/>
<p>Pregunta 2:</p>
<input type='radio' id='Rd_0' name='pregunta[2]' value='14'/>
<input type='radio' id='Rd_0' name='pregunta[2]' value='14'/>
<input type='radio' id='Rd_0' name='pregunta[2]' value='14'/>
<p>Pregunta 3:</p>
<input type='radio' id='Rd_0' name='pregunta[3]' value='14'/>
<input type='radio' id='Rd_0' name='pregunta[3]' value='14'/>
<input type='radio' id='Rd_1' name='pregunta[3]' value='14'/>
<input type="submit"/>
</form>
</body>
__________________ Cómo escribir
No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |