Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/04/2010, 17:07
pepeluis1
 
Fecha de Ingreso: abril-2010
Ubicación: Colombia
Mensajes: 229
Antigüedad: 14 años, 11 meses
Puntos: 2
Respuesta: Cambiar radio a select

Prueba si esto es lo que necesitas

Código HTML:
Ver original
  1. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  2. <title>Documento sin t&iacute;tulo</title>
  3. </head>
  4.  
  5.  
  6. <table width="44%" border="1">
  7.  
  8.   <tr>
  9.     <td width="40%" class="parrafo"><div align="left"><strong>Posee SubNivel:</strong></div></td>
  10.     <td width="60%" class="parrafo">&nbsp;&nbsp;Si
  11.     <input type="radio" name="radio" id="radio" value="radio" onClick="link1.style.display=''">
  12.         &nbsp;&nbsp;No
  13.     <input type="radio" name="radio" id="radio2" value="radio" onClick="link1.style.display='none'"></td>
  14.   </tr>
  15.   <tr id="link1" style="display:none">
  16.     <td class="parrafo">&nbsp;</td>
  17.     <td class="parrafo"><select name="select" id="select">
  18.       <option>dato1</option>
  19.       <option>datos2</option>
  20.     </select>
  21.     </td>
  22.   </tr>
  23. </body>
  24. </html>