答案 0 :(得分:2)
你可以在select2.css中更新CSS,大概是第302行:
/* results */
.select2-results {
/* max-height: 200px; comment out the max-height! */
padding: 0 0 0 4px;
margin: 4px 4px 4px 0;
position: relative;
overflow-x: hidden;
overflow-y: auto;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
或者,如果您无法访问CSS,或者不想在您的网站上进行更改,则可以覆盖自己样式表中的特定样式:
.select2-results {
max-height: none;
}
请参阅此JSFiddle