私はクラス 'div_title_item'のすべての項目が最初に隠されているページを持っています。いくつかの改行ロジックに基づいて、それらのいくつかを示したいと思います。要素グループの非表示と表示
// 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...
何も表示されていません。