3

我正在使用带有搜索下拉列表的 [jQuery selected plugin][1],我想将滚动条中显示的选项数量设置为只有 2。但它显示了 10 个选项。任何想法 ?

查询:

$(".select").chosen();

我在选择标签中将属性大小设置为 2,但什么也没发生

 <select data-placeholder="Choisir équipe..." class="select" name="Equipe_sup" id="Equipe_sup" style="width:350px;" tabindex="2" size="2"></select>
4

3 回答 3

0

一种解决方案使用size="2"你的<select id="select" name="name" title="test" size="2">test</select> 并尝试这个http://harvesthq.github.com/chosen/

于 2013-02-21T16:17:26.083 回答
0

使用元素的最大高度功能来限制所选下拉列表中显示元素的限制

$('#id').css("max-height","127px"); // this will display 5 elements
于 2014-06-30T09:43:07.970 回答
0

使用此代码,我希望会成功:

$(".chosen-select").chosen({width: "100%"}); 
于 2019-11-27T05:02:58.647 回答