0

我在 html 中有 2 个 html 选择菜单。

我有 jqueryui 使它成为一个组合框。

如何设置一个与插件中设置的默认值不同的最小长度?

4

1 回答 1

-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 */
于 2012-08-16T16:37:57.503 回答