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.
我正在使用 jquey.nestable 插件来渲染树。现在在页面加载时,树默认处于展开视图中。我想在页面加载时折叠它。这该怎么做?
https://github.com/dbushell/Nestable
如果要折叠所有项目,请使用:
$(selector).nestable('collapseAll');
您必须在创建Nestable. 例如:
Nestable
$('#nestable').nestable({}); $('#nestable').nestable('collapseAll');