gpt4 book ai didi

jquery - 开设一门类(class),关闭其他类(class)

转载 作者:行者123 更新时间:2023-11-27 22:29:33 26 4
gpt4 key购买 nike

我用这个 jQuery 编写了一个带有可扩展类别的小列表菜单

$("#menu ul li ul").hide();

$("#menu ul li").click(function() {
$(this).find("ul").slideToggle();
});

这里有完整的菜单 jsFiddle:http://jsfiddle.net/AlexSadler/uRwh7/7/

唯一的问题是,当一个类别处于打开状态并且我去打开另一个类别时,第一个类别没有关闭并且我最终用完了空间。有人知道我该如何纠正这个问题吗?

最佳答案

$('#menu ul li').click(function() {
$(this)
.find('ul')
.slideToggle()
.end()
.parent()
.siblings()
.find('li ul')
.hide()
;
});

关于jquery - 开设一门类(class),关闭其他类(class),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4163064/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com