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.
我在顶部标题中有打开手风琴链接的 html 链接,但现在我希望其中一个将它们全部关闭。我需要在js中添加什么?
http://imip.rvadv.com/index2.html
假设您想在单击具有 id 主页的主页时隐藏所有内容。您需要添加以下代码
$("#home").click(function(){ $(".st-open a").click(); $(window).scrollTop(0); // Added for scrolling top })