La Cuestion Es Que Me Di Cuenta Que Funciona Cuando Existen Dos Radios, Pero Si Solo Hay Uno Me Sigue Enviando El Mensaje De "debe seleccionar un radio".
Quisiera Saber Como Corregir Ese Detalle.. Espero Alguien Pueda Ayudarme..
Gracias
Código PHP:
Ver original
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <script> function recuperaDato(f){ valor = ""; for (i = 0, d = f.dato, total = d.length; i < total; i ++) if (d[i].checked) valor = d[i].value; if (valor == "") alert("debe seleccionar un radio...") else { opener.document.getElementById("tela").value = valor; window.close(); } } </script> </head> <body> <form> <input type="radio" name="dato" value="uno" > Dato1<br> <input type="radio" name="dato" value="dos" > Dato1<br> <br> <br> <input type="button" value="Recupera Dato" onclick="recuperaDato(this.form);"> </form> </body> </html>