El atributo marcado en HTML se utiliza para indicar si un elemento debe comprobarse cuando se carga la página. Es un atributo booleano.
Nota: Se puede usar con el elemento <input> solo donde el tipo es «casilla de verificación» o «radio». Este atributo ha quedado DESAPROBADO y ya no se recomienda.
Etiquetas admitidas:
- < entrada>
Sintaxis:
<input type = "checkbox|radio" checked>
Ejemplo 1:
html
<!DOCTYPE html> <html> <head> <title>HTML checked Attribute</title> </head> <body style = "text-align: center;"> <h1 style = "color: green;">GeeksforGeeks</h1> <h2>HTML 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:
Ejemplo 2:
html
<!DOCTYPE html> <html> <head> <title>HTML checked Attribute</title> </head> <body style = "text-align: center;"> <h1 style = "color: green;">GeeksforGeeks</h1> <h2>HTML checked Attribute</h2> <form > <!-- Below input elements have attribute "checked" --> <input type="radio" name="check" value="1" checked> Selected by default<br> <input type="radio" name="check" value="2"> Not selected by default<br> </form> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo marcado se enumeran a continuación:
- Google Chrome 1.0
- Internet Explorer 2.0
- Firefox 1.0
- Ópera 1.0
- Apple Safari 1.0
Publicación traducida automáticamente
Artículo escrito por Vishal Chaudhary 2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA