美文网首页我爱编程
bootstrap-treeview展示树形用户数据

bootstrap-treeview展示树形用户数据

作者: 十九贝勒 | 来源:发表于2018-07-24 13:38 被阅读121次

导入相关JS和CSS

<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css"/>
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdn.bootcss.com/bootstrap-treeview/1.2.0/bootstrap-treeview.min.js"></script>

引用树形数据

var defaultData = [
          {
            text: 'Parent 1',
            href: '#parent1',
            tags: ['4'],
            nodes: [
              {
                text: 'Child 1',
                href: '#child1',
                tags: ['2'],
                nodes: [
                  {
                    text: 'Grandchild 1',
                    href: '#grandchild1',
                    tags: ['0']
                  },
                  {
                    text: 'Grandchild 2',
                    href: '#grandchild2',
                    tags: ['0']
                  }
                ]
              },
              {
                text: 'Child 2',
                href: '#child2',
                tags: ['0']
              }
            ]
          },
          {
            text: 'Parent 2',
            href: '#parent2',
            tags: ['0']
          },
          {
            text: 'Parent 3',
            href: '#parent3',
             tags: ['0']
          },
          {
            text: 'Parent 4',
            href: '#parent4',
            tags: ['0']
          },
          {
            text: 'Parent 5',
            href: '#parent5'  ,
            tags: ['0']
          }
        ];

使用插件

$('#cy').treeview({
       expandIcon: 'glyphicon glyphicon-chevron-right',
       collapseIcon: 'glyphicon glyphicon-chevron-down',
       levels: 1,
       showTags: true,
       data: defaultData
 });

官方文档

结果界面

tup.png

相关文章

网友评论

    本文标题:bootstrap-treeview展示树形用户数据

    本文链接:https://www.haomeiwen.com/subject/ndbemftx.html