quiero usar el código HTML data-*
atributos y tienen algunas imágenes como esta:jQuery seleccione clase con valor
<img src="http://placehold.it/100.png" data-selected="true">
<img src="http://placehold.it/100.png" data-selected="false">
<img src="http://placehold.it/100.png" data-selected="false">
<img src="http://placehold.it/100.png" data-selected="true">
<img src="http://placehold.it/100.png" data-selected="false">
cómo puedo ahora sólo consigue solamente los que tienen data-selected="true"
?
me trataron:
$("img").each(function(){
if($(this)).attr("data-selected") == "true") {
//do something
}
}
pero esto no parece ser la mejor manera para mí. ¿Hay un selector directo donde puedo hacer algo como
$("img data-selected=true") ?
gracias por su ayuda !!
Tenga en cuenta que jQuery tiene ** excellent ** [documentation] (http://api.jquery.com/category/selectors/) – ManseUK