Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/01/2004, 17:08
Avatar de BatiK
BatiK
 
Fecha de Ingreso: marzo-2003
Ubicación: Internet
Mensajes: 688
Antigüedad: 21 años, 9 meses
Puntos: 1
Pregunta juntar input radio y text

Tengo un formulario con varios <input type='radio'>
los usuarios solo pueden elejir uno

lo que quiero hacer es que aparte de los input type='radio' aya tambien uno type='text' pero que si se elije este no se pueda elejir nunguno de los type="radio"

algo asi:

<form name='enviar' method='POST' action='pagina2.htm'>
<input type='radio' name='texto' value='texto1'>
<input type='radio' name='texto' value='texto2'>
<input type='text' name='texto' value='ponetexto'>
</form>

solo que asi no me funciona