解決方案:css
(1) select2 加入 dropdownParent 屬性,設置父元素modalhtml
$(".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; }