我正在使用jquery.sortable插件来渲染树。现在在页面加载时,默认情况下树处于展开 View 中。我想在页面加载时将其折叠。这该怎么做? ta田 最佳答案 如果要折叠所有项目,请使用:$(selector).nestable('collapseAll'); 创建Nestable后,必须使用该命令。例如:$('#nestable').nestable({}); $('#nestable').nestable('collapseAll');