admin管理员组文章数量:1339481
I'd like to know if a style class
exists and if yes, how many elements have it.
To know if a style class
exists, I use:
if ($("*").hasClass('ui-state-active')) {
alert("class exist : "+nb_checked);
}
But to know how many elements have the class, I can't figure out.
I'd like to know if a style class
exists and if yes, how many elements have it.
To know if a style class
exists, I use:
if ($("*").hasClass('ui-state-active')) {
alert("class exist : "+nb_checked);
}
But to know how many elements have the class, I can't figure out.
Share Improve this question edited Mar 25, 2013 at 18:23 Ian 50.9k13 gold badges103 silver badges111 bronze badges asked Mar 25, 2013 at 18:16 atbegin-butatbegin-but 2731 gold badge8 silver badges19 bronze badges7 Answers
Reset to default 9This is a simpler approach:
$('.ui-state-active').length
Just do:
$('.ui-state-active').length
if($('.ui-state-active').length){
alert("class exist : "+$('.ui-state-active').length);
}
Doc here :
http://api.jquery./length/
You can use this for both
c = $('.ui-state-active').length;
if (c>0) {
console.log('There is '+c+' elements having required class');
}
Using jQuery, you can directly select all elements which have a certain class. The syntax for this is the same as that for CSS selectors:
$(".className")
This creates a jQuery object, which is a collection of the matched elements. There are many useful properties of this object, one of which is length
, the number of elements in the collection.
In your case, finding the number of required elements is as trivial as
$(".ui-state-active").length
You could do both in one go:
var elements = $('.ui-state-active');
if(elements.length === 0) {
alert('No elements with class ui-state-active!')
} else {
alert(elements.length + ' elements with class ui-state-active');
}
How about:
$(".ui-state-active").length;
本文标签: javascriptcheck if css class exist and if yes how many timesStack Overflow
版权声明:本文标题:javascript - check if css class exist and if yes how many times - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743584421a2506210.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论