我正在使用带有引导程序4.3的select 2 4.0.6-rc.0
<div class="row option-select">
<div class="col-sm-6 country-col">
<select id="selection" class="custom-select custom-select-sm">
</select>
</div>
</div>
我正在通过ajax获取数据。一切工作正常,除了select显示5个选项并且没有滚动条,因此即使有10个以上,我也无法查看更多选项。
<script type="text/javascript">
$(document).ready(function() {
$('#selection').select2({
ajax: {
url: './data/c-list.php',
type: 'post',
dataType: 'json',
delay: 250,
data: function (params) {
return {
searchTerm: params.term
};
},
processResults: function(response) {
return {
results: response
};
},
cache: true
}
});
});