We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
希望左侧的树形导航栏默认是折叠上的
The text was updated successfully, but these errors were encountered:
我是这样解决的 在/vendor/weiwei/api-doc/src/view/index.html 106行页面加载ajax请求成功之后的success中 zTree = $.fn.zTree.init($("#zt_navi_tree"), setting, zNodes); // 后面增加 var nodes = zTree.getNodes(); if (nodes.length > 0) { for (var i = 0, len = nodes.length; i < len; i++) { zTree.expandNode(nodes[i], false, false, false); } } 看代码这个左侧树形导航栏用的是zTree.js 看官方文档就可以 主要的是这个 zTree.expandNode()
Sorry, something went wrong.
No branches or pull requests
希望左侧的树形导航栏默认是折叠上的
The text was updated successfully, but these errors were encountered: