El atributo de formulario HTML <select> se utiliza para especificar uno o más formularios a los que pertenece el elemento <select> . Sintaxis:
<select form="form_id">
Valores de atributos:
- form_id: contiene el valor, es decir, form_id que especifica uno o más elementos a los que pertenece el elemento seleccionado. El valor de este atributo debe ser el id del elemento <form>.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>select Form Attribute</title> <style> h1, h2, .titl { text-align: center; } fieldset { width: 50%; margin-left: 22%; } h1 { color: green; } </style> </head> <body> <center> <h1>GeeksforGeeks</h1> <h2><select> form Attribute</h2> Select your preferred course from the drop-down list: <br> <select form="myGeeks" id="myCourses" autofocus> <option value="C++">c++</option> <option value="Placement">Placement</option> <option value="Java">Java</option> <option value="Python">Python</option> </select> <br> <form id="myGeeks"> <input type="submit"> </form> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con HTML <select>form Attribute se enumeran a continuación:
- Google Chrome
- Borde 12 y superior
- explorador de Internet
- Firefox 1 y superior
- Ó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