Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!doctype html> <html> <head> <title>Ejemplo checkbox</title> </head> <body> <script language= "javascript" type= "text/javascript"> function Mostrar() { msg="Opcion 1:"+formulario.check1.checked+"\n" msg+="Opcion 2:"+formulario.check2.checked+"\n" msg+="Opcion 3:"+formulario.check3.checked+"\n" alert(msg); } </script> <form name="formulario" id="formulario"> <input type="checkbox" name="check1" checked> Opción 1<br> <input type="checkbox" name="check2"> Opción 2 <br> <input type="checkbox" name="check3" checked> Opción 3<br> </form> <a href="javascript:Mostrar()">Ver valores</a> </body> </html>