Jquery选择:大小选择

问题描述 投票:0回答:2

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

jQuery的:

$( “选择”)选择();

我在select标签中将属性大小设置为2但没有任何反应

 <select data-placeholder="Choisir équipe..." class="select" name="Equipe_sup" id="Equipe_sup" style="width:350px;" tabindex="2" size="2"></select>
jquery html5 jquery-chosen
2个回答
0
投票

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


0
投票

使用元素的max-height特征来限制所选下拉列表中显示元素的限制

( '#ID')的CSS( “最大高度”, “127px”); //这将显示5个元素

© www.soinside.com 2019 - 2024. All rights reserved.