Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は使用しています
$(list).find("#disappear").hide();
検索でタイトルを非表示にします。それは機能していますが、IDが消えたliの最初の出現のみを隠しています。#disappear ですべてのコンテンツを隠しているわけではありません
誰もこれを解決する方法を知っていましたか?
すべての id 属性値は Web ページ上で一意であるため、ID の class instend を使用します。
$(list).find(".disappear").hide();