bootstratreeview树形下拉框

话不多说直接上代码

效果图在这里插入图片描述

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" href="bootstrap/css/bootstrap.css">
    <script type="text/javascript" src="bootstrap/js/jquery.min.js"></script>
    <script type="text/javascript" src="bootstrap/js/bootstrap-treeview.min.js"></script>
</head>
<style type="text/css">
    .treeStyle {
        opacity: 80%;
        height: 300px;
        overflow:auto;

        position: absolute;
        top: 37px;
        left: 0;
        z-index: 4;
        width: 95%;
        margin: 0 15px 0 15px;
   /*     margin-left: 15px;
        margin-right: 17px;*/
    }
    .treeStyle::-webkit-scrollbar {/*滚动条整体样式*/

        width: 2px;     /*高宽分别对应横竖滚动条的尺寸*/

    }

    .treeStyle::-webkit-scrollbar-thumb {/*滚动条里面小方块*/

        border-radius: 10px;

        -webkit-box-shadow: inset 0 0 5px rgb(64, 64, 64);

        background: #cbcbcb;

    }

    .treeStyle::-webkit-scrollbar-track {/*滚动条里面轨道*/

        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);

        border-radius: 10px;
        background: #EDEDED;

    }
</style>
<body>
<div class="container " style="margin-top: 50px">
    <div class="row">
        <div class="col-sm-4">
            <div class="input-group">
                <input type="text" class="form-control" id="ipt" readonly aria-describedby="size1">
                <span class="input-group-addon" id="size1"><i class="glyphicon glyphicon-chevron-up"></i></span>
            </div>
            <div hidden class="treeStyle" id="tree"></div>
        </div>
    </div>
</div>


<script type="text/javascript" src="bootstrap/js/selectTree.js"></script>
<script>
   $(".input-group").click(function(event){
       $("#tree").show();
       //切换图标
       $("i").toggleClass("glyphicon glyphicon-chevron-down").toggleClass("glyphicon glyphicon-chevron-up");
       //阻止事件传播  防止传到document的点击事件中
       event.stopPropagation();
   })

    $(function () {
        $(document).click(function () {
            $("#tree").hide();
        });
    })
</script>
</body>
</html>

treeview JS

$(function () {
        let $optionTree = $("#tree");
        $optionTree.treeview({
            levels: 3,//默认显示情况下  树显示到2级深度 默认是2
            data: getTree(),
            showCheckbox: 1,//复选框设置,也可以是true
            showIcon: false,
            onhoverColor: 'rgba(67,143,207,0.3)',
            selectedColor: '#000000',
            selectedBackColor: '#EEEEEE',
            collapseIcon:"",
            showTags: 0,//节点的右边显示附加信息 一般要在数据 加tags:[] 属性
            //enableLinks:1,//能给节点附加URL 要与数据里的 href 连用
            showBorder: false,
            onNodeSelected: function (evetn, node) {
                $("#ipt").val(node.text);
                //$("#tree").hide();
                $("i").toggleClass("glyphicon glyphicon-chevron-down").toggleClass("glyphicon glyphicon-chevron-up");

            }
        });

        function getTree() {
            //节点上的数据遵循如下的格式:
            return [
                {
                    text: '角色 1',
                    href: '#parent1',
                    tags: ['4'],
                    state: {
                        selected: false,
                        expanded: true,
                    },
                    nodes: [
                        {
                            text: 'Child 1',
                            href: '#child1',
                            tags: ['2'],
                            nodes: [
                                {
                                    text: "ZChild1",
                                    tags: [10],
                                }, {
                                    text: "ZChild2",
                                    tags: [11]
                                }
                            ]
                        },
                        {
                            text: 'Child 2',
                            href: '#child2',
                            tags: ['3']
                        },
                        {
                            text: 'Grandchild 1',
                            href: '#grandchild1',
                            tags: ['4']
                        },
                        {
                            text: 'Grandchild 2',
                            href: '#grandchild2',
                            tags: ['5']
                        },
                        {
                            text: 'Grandchild 2',
                            href: '#grandchild2',
                            tags: ['5']
                        },
                        {
                            text: 'Grandchild 2',
                            href: '#grandchild2',
                            tags: ['5']
                        },
                        {
                            text: 'Grandchild 2',
                            href: '#grandchild2',
                            tags: ['5']
                        }
                    ]
                },
                /*{
                    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']
                }*/
            ];

        }
    }
)
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值