El atributo HTML <input>checked se usa para indicar si un elemento <input> debe verificarse cuando se carga la página . Es un atributo booleano.
Se puede usar con el elemento solo donde el tipo es «casilla de verificación» o «radio» .
Sintaxis:
<input type = "checkbox|radio" checked>
Ejemplo: Este ejemplo ilustra el uso del atributo marcado en el elemento de entrada.
<!DOCTYPE html> <html> <head> <title> HTML <input>checked Attribute </title> </head> <body style="text-align: center;"> <h1 style="color: green;"> GeeksforGeeks </h1> <h2> HTML <input>checked Attribute </h2> <form> <!-- Below input elements have attribute "checked" --> <input type="checkbox" name="check" value="1" checked> Checked by default <br> <input type="checkbox" name="check" value="2"> Not checked by default <br> </form> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo HTML <input>checked se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA