选定的下拉属性未更新

时间:2015-02-12 19:38:02

标签: jquery jquery-chosen

我最近将标准下拉列表更改为选定的下拉列表,其中包含一个搜索框。 选择可以根据列表中的项目数定义阈值,以禁用搜索栏。 例如:我不想要一个搜索栏,列表中的项目少于10个。 文档说要使用:

$(".chosen-select").chosen({disable_search_threshold: 10});

但它并不适合我。这是我的代码:

<tr class="flavors">
  <td>[brand_list]</td>
  <td>
    <select id="arome0" class="chosen-select"></select>
  </td>
  <td>
    <select id="dropper0" class="chosen-select">
      <option selected="selected" value="type1">type 1</option>
      <option value="type2">type 2-3</option>
    </select>
  </td>
  <td>
    <select id="qtyunit0" class="chosen-select">
      <option value="ml">ml</option>
      <option value="drops">drops</option>
      <option selected="selected" value="perc">%</option>
    </select>
  </td>
  <td>
    <input id="quantity0" class="quantity" type="number" />
  </td>
</tr>

和我的jquery:

$( document ).ready(function() {
    $("#marque0").attr('class','chosen-select');
    $(".chosen-select").chosen({
        disable_search_threshold: 10,
        no_results_text: "Oops, nothing found!"
    });
    $(".chosen-select").css("overflow", "initial !important");
}); 

你能看到什么问题吗?

1 个答案:

答案 0 :(得分:-1)

尝试:

$(".chosen-select").chosen({'disable_search_threshold': 10});