Mantén la atención ya que en este tutorial vas a encontrar el arreglo que buscas.
Ejemplo 1: datos css attribute selector
[data-value]/* Attribute exists */[data-value="foo"]/* Attribute has this exact value */[data-value*="foo"]/* Attribute value contains this value somewhere in it */[data-value~="foo"]/* Attribute has this value in a space-separated list somewhere */[data-value^="foo"]/* Attribute value starts with this */[data-value|="foo"]/* Attribute value starts with this in a dash-separated list */[data-value$="foo"]/* Attribute value ends with this */
Ejemplo 2: js seleccionar por datos attribute
$("[attribute=value]")
Nos encantaría que puedieras comunicar este artículo si te valió la pena.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)