我在html中有2个html选择菜单。
我让jqueryui成为一个组合框。
如何将其设置为具有与插件中设置的默认值不同的最小长度?
答案 0 :(得分:-1)
您可以使用不同的选择器单独定位它们,并使用不同的.combobox()
运行minLength
。
例如,如果您有以下HTML:
<select id="first">
<!-- options... -->
</select>
<select id="second">
<!-- options... -->
</select>
您可以执行以下操作:
$('#first').combobox(); /* first combo box, default minLength */
$('#second').combobox({ minLength: 4 }); /* second , different minLength */
您也可以在调用combobox()
后更改选项。例如:
$('select').combobox(); /* convert all select menus to combobox */
$('#second').combobox("option", "minLength", 0); /* diff minLength for #second */