Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Use the :visible pseudo selector.
:visible
ie. $(".warning-label:visible")
$(".warning-label:visible")
Just use:
$("div.warning-label:visible")
jQuery.not()を使用して、探していることだけを行うことができます。
.not()
$(".warning-label").not(':hidden')
次に例を示します。
http://jsfiddle.net/Aq3X5/1/