Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!doctype html> <html> <head> <title>Ejemplo radio</title> </head> <body> <script language= "javascript" type= "text/javascript"> function Mostrar() { msg="Elementos:"+formulario.edad.length+"\n"; msg+="Menor de 18 años: "+formulario.edad[0].checked+"\n"; msg+="Entre 18 y 60 años: "+formulario.edad[1].checked+"\n"; msg+="Mayor de 60 años: "+formulario.edad[2].checked+"\n"; alert(msg); } </script> <form name="formulario" id="formulario"> Edad:<br><br> <input type="radio" name="edad" value="<18"> Menor de 18 años.<br> <input type="radio" name="edad" value=">18 y <60" checked> Entre 18 y 60 años.<br> <input type="radio" name="edad" value=">60"> Mayor de 60 años.<br> </form> <a href="javascript:Mostrar()">Ver valores</a> </body> </html>