我有一個頁面,其中最初隱藏了類'div_title_item'的所有項目。基於一些paginator邏輯,我會想展示其中的一些。隱藏和顯示元素組
// initially
$(".div_title_item").hide(); // this works fine
現在顯示部分。我在下面嘗試,但它沒有奏效。
// on some event for example
var collection = $(".div_title_item");
collection[0].show();
collection[1].show();
// etc...
什麼都沒有顯示。