Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/09/2003, 11:23
Avatar de Kaopectate
Kaopectate
Colaborador
 
Fecha de Ingreso: diciembre-2001
Ubicación: Curaçao (Antillas Holandesas)
Mensajes: 3.179
Antigüedad: 23 años, 2 meses
Puntos: 38
Hola Vicente.

Prueba asi:

Código PHP:
<html>
 <
head>
  <
script language="JavaScript">

   function 
borra(){
    var 
aItems document.getElementsByName("rad");
    for (var 
0aItems.lengthi++)
     
aItems[i].checked false;
   }

  
</script>
 </head>
 <body>
  <form name="frm">
   <table border="0">
    <tr>
     <td>
      <input type="radio" name="rad" value="1">Valor uno
     </td>
     <td>
      <input type="radio" name="rad" value="2">Valor dos
     </td>
    </tr>
    <tr>
     <td colspan="2" align="center">
      <input type="button" name="res" value="Deseleccionar" onclick="borra()">
     </td>
    </tr>
   </table>
  </form>
 </body>
</html> 
Saludos.