我想用jquery做過濾器,首先我隱藏所有的div標籤,然後嘗試只顯示選定的div標籤,我選擇他們在一個變量,並檢查收集的div的長度是正確的,但無法循環並向他們展示。用jquery過濾
var filter = $('.sec5row.'+classtype); //this is the selected variable
//I try to loop it and show
for (var i = 0; i < = filter.length; i++){
$(filter[i]).show();
}
but then I do filter[1].show() it works
請告訴我正確的方式來循環它。