本文介绍了jQuery:如果有特定班级的孩子?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道如何确定一个ul的孩子数是否超过2个,并且这个ul内是否有两个具有两个特定班级的孩子……
i wonder how i can determine if a ul has MORE than 2 children and if there are two children with two specific classes inside this ul …
if($(this).children().length > 2 && $(this).children('.section-title, .active')) {
$(this).append('<li class="dots">…</li>');
}
???
推荐答案
var $ul = $('ul');
if($ul.find("li").length > 2 && $ul.find('.active, .inactive').length == 2) {
alert('yes, it is this way');
}
<ul>
<li class="active">Whatever</li>
<li class="inactive">Whatever</li>
<li>Whatever</li>
<li>Whatever</li>
</ul>
演示: http://jsfiddle.net/RtTSM/1/
这篇关于jQuery:如果有特定班级的孩子?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!