我在我的頁面中有一個selectpicker(bootstrap),其中的選項正在加載。它有很多列表,但不好看。我想減少selectpicker的高度。我已經提供了內聯風格和所有內容,但並不反映。如何調整selectpicker下拉菜單的高度
這是我的代碼
<select class="selectpicker" data-dropup-auto="false" id="estType" name="estType">
<option selected disabled value="0">Select</option>'
</select>
我的js代碼
$function ({
$.ajax({
datatype: "json",
type: "GET",
async: false,
url: "Establishment/GetPrePopulationDetails",
success: function (result, success) {
var esttypes = $.map(result['EstablishmentTypes'],
function (key, value) {
return $('<option>', { value: value, text: key });
});
$('#estType').append(esttypes);
},
error: function (xhr, ajaxOptions, thrownError) {
console.error(xhr.status);
console.error(thrownError);
}
});
});
參考http://stackoverflow.com/questions/21111652/how-do-you-set-the-max-height-of-an-expanded-chosen-element-jquery-plugin – Ish
使用'max-height'爲了那個原因。我個人的選擇是使用媒體查詢,並且對桌面型設備具有「px」最大高度,對於移動設備具有「vh」值。另外,如果您有超過20個孩子,請考慮使用[select2](https://select2.github.io/)或[autocomplete](https://jqueryui.com/autocomplete/)解決方案。 –