我對一組元素進行jQuery篩選,檢查哪些項目的值低於90並超過100.我想要做的也是獲取匹配這些條件的項目數,並最終將它們保存爲輸出在頁面的其他地方:如何獲取從匹配條件返回的jQuery元素的數量?
$("#dtarget li").filter(function()
{
if (parseInt(this.innerText) < 90)
{
$(this).css("color","red");
}
else if (parseInt(this.innerText) > 100)
{
$(this).css("color","gold");
}
});
我是新來的jQuery和Javascript,所以很容易。
可能重複(http://stackoverflow.com/questions/2686390/jquery-how-do-i- count-the-element-of-elements-by-a-selector) – 2011-12-21 00:02:39