javascript - check if css class exist and if yes how many times - Stack Overflow

I'd like to know if a style class exists and if yes, how many elements have it.To know if a style

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 badges
Add a ment  | 

7 Answers 7

Reset to default 9

This 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;

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743584423a4474736.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信