Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Elemento Datalist | Formularios
HTML Definitivo
course content

Contenido del Curso

HTML Definitivo

HTML Definitivo

1. Desarrollo Web
2. Tags y Atributos
3. Estructura del Documento
4. Medios y Tablas
5. Formularios

bookElemento Datalist

El elemento <datalist> en HTML se utiliza para crear una lista predefinida de opciones para un elemento <input>. Permite al usuario seleccionar una opción de una lista de opciones predefinidas, al tiempo que le ofrece la posibilidad de introducir su propio valor si así lo desea. La lista de valores predefinidos se oculta hasta el momento en que el usuario empieza a escribir en el campo de texto asociado. Combinamos <datalist> con el atributo id y <input> con el atributo list.

html

index

css

index

js

index

copy

En general, el elemento <datalist> puede ser una forma útil de proporcionar una lista predefinida de opciones para que los usuarios seleccionen, al tiempo que les permite la flexibilidad de introducir su propio valor si es necesario.

Example

When the user starts typing in the category input field, the browser will display the predefined categories from the datalist. If none of the options match the user's input, they can still type their own category. This allows the user to choose from a list and manually input a value if necessary.

html

index

css

index

js

index

copy
  • <label for="category">: labels the input field, indicating to the user that they should select or enter a product category;
  • <input type="text" name="category" id="category" list="categories" />: the input field where the user can either type a category or select from the available options. The list="categories" attribute links this input to the datalist with the ID categories;
  • <datalist id="categories">: this contains a list of predefined product categories. These options will appear as suggestions when the user starts typing in the input field;
  • <option value="...">: each option represents a product category in the list. The user can select one of these categories or type their own value if it doesn’t match any of the options.
1. Which HTML element is used to create a drop-down list with multiple options?
2. What is the purpose of the `datalist` element?
3. What attribute is used to link a `datalist` element to an `input` element?
Which HTML element is used to create a drop-down list with multiple options?

Which HTML element is used to create a drop-down list with multiple options?

Selecciona la respuesta correcta

What is the purpose of the `datalist` element?

What is the purpose of the datalist element?

Selecciona la respuesta correcta

What attribute is used to link a `datalist` element to an `input` element?

What attribute is used to link a datalist element to an input element?

Selecciona la respuesta correcta

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 5. Capítulo 9
We're sorry to hear that something went wrong. What happened?
some-alt