Ver Mensaje Individual
  #6 (permalink)  
Antiguo 28/08/2006, 08:19
Avatar de pinchoso
pinchoso
 
Fecha de Ingreso: octubre-2005
Ubicación: Barcelona
Mensajes: 177
Antigüedad: 18 años, 7 meses
Puntos: 0
jeje, posiblemente has de cambiar de cheked a checked...ese inglés!!

si te sigue dando problemas, a mi esto me funciona:

Código:
 
<script>
function sexo_titular(f)
{
var sexotitular;
var sexo_tit=f;
if(sexo_tit==1)//ha pulsado boton A
{
sexotitular='mujer';
document.getElementById('radio_sexo_mujer').checked =true;
document.getElementById('radio_sexo_hombre').checked=false;
}
else
{
//ha pulsado boton B
sexotitular='hombre';
document.getElementById('radio_sexo_mujer').checked =false;
document.getElementById('radio_sexo_hombre').checked=true;
}
}
</script>
<body>
<input type="submit" name="Submit" value="A" onClick="sexo_titular(1)"/>
<input type="submit" name="Submit2" value="B" onClick="sexo_titular(2)"/>
<br />
<input name="radio_sexo_mujer" id="radio_sexo_mujer" type="radio" disabled value="1">
<input name="radio_sexo_hombre" id="radio_sexo_hombre" type="radio" value="2" disabled>
</body>
Saludos!
__________________