Im與這一個掙扎。我有一個項目列表,並在表單的一部分,當有些事情已經驗證它增加類「檢查」到相應的列表項。jquery計數與「檢查」類的項目
<ul>
<li class="title">Checklist</li>
<li class="checkType checked">Card Type</li>
<li class="checkNumber checked">Card Number</li>
<li class="checkName checked">Name on Card</li>
<li class="checkMonth checked">Expiry Month</li>
<li class="checkYear checked">Expiry Year</li>
<li class="checkCode checked">Security Code</li>
</ul>
.title{font-size:23px; font-weight:bold;}
.checked{ color:#f00;}
但我需要jQuery來檢查每個項目都有類checked
EXCEPT title
。
這是可行的嗎?
演示:http://jsfiddle.net/bQtEQ/1/
感謝的答案我現在有以下
var counting = $("li.checked:not(.title)").length;
if (counting == 6){
console.log(counting);
}
有時候,你看看這個問題,你想知道爲什麼有沒有10個回答......你再等第二次......咚! –
[Jquery按類來計數元素的可能的重複是什麼是最好的方式來實現這個?](http://stackoverflow.com/questions/2727303/jquery-counting-elements-by-class-what-is-the-best這個) – Esailija
根本不重複。 – Archer