bootstrap modal与select2使用冲突解决

今天发现项目使用bootstrap modal 与 jquery select2 结合时发现select2不起做用,点击select框不显示选项,查阅资料后发现是由于modal层遮挡了select2的选择层css

下面是解决方案(亲测),分两步jquery

 

1. select2 加入 dropdownParent 属性,设置父元素modalbootstrap

$(".select2-demo").select2({
    dropdownParent:$("#Modal-demo")
});

2. css设置 让select2的选择弹出层位于最上层,不然将被modal遮挡住spa

复制代码
.select2-drop {
        z-index: 10050 !important;
    }
 
    .select2-search-choice-close {
        margin-top: 0 !important;
        right: 2px !important;
        min-height: 10px;
    }
 
        .select2-search-choice-close:before {
            color: black !important;
        }
    /*防止select2不会自动失去焦点*/
    .select2-container {
        z-index: 16000 !important;
    }
 
    .select2-drop-mask {
        z-index: 15990 !important;
    }
 
    .select2-drop-active {
        z-index: 15995 !important;
    }
复制代码
相关文章
相关标签/搜索