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.
我正在使用插件可嵌套(jquery)在同一页面上显示几个可嵌套列表。默认情况下,所有列表都是展开的。我发现这个解决方案可以折叠所有列表在此处输入链接描述
我的问题是如何独立选择列表的状态(一些默认展开,另一个折叠)。?
在后端,我将一个类('expandmenu')添加到我希望它被扩展的项目中。
然后我在前端添加这个:
$(".expandmenu [data-action]").each(function () { if($(this).html()=="Expand"){ $(this).click(); } });