给bootstrap-treeview添加滚动条

叶衡虑
2023-12-01

 bootstrap-treeview默认是不加滚动条的,如果你内容多,出现的滚动条是浏览器自动的滚动条(就是全屏的)。

增加滚动条很简单,外面包一层这个div即可。

<div style=" overflow:scroll; width:20%; height:680px;float:left">
<div id="tree"></div>
</div>

查看完整的demo可以看我的另一篇博文:bootstrap-treeview踩坑记

 类似资料: