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();
在搜索中隐藏我的标题。它正在工作,但它只隐藏第一次出现的 li 和 id 消失。它不会隐藏所有具有#disappear 的内容
有谁知道如何解决这个问题?
使用 ID 的类实例,因为所有 id 属性值在网页上都是唯一的。
$(list).find(".disappear").hide();