chosen.js:create_option参数不起作用

时间:2015-05-18 07:35:28

标签: jquery jquery-plugins jquery-chosen

我想在selected.js插件中动态添加值。

github.com/harvesthq/chosen

我找到了一个解决方案here,但它无效。我搜索了所有可用选项,但未列出there

我的JS是

$('.chosen-select').chosen({
    add_new_options: true,
    disable_search_threshold : 5,
    no_results_text : "Oops, nothing found!"    
});

我错过了什么吗?这里需要任何其他参数吗?为什么可用选项列表中缺少该文件?

1 个答案:

答案 0 :(得分:1)

我经历了同样的过程。您提到的fork(selected / pull / 166)的链接将合并到选定的根目录1.4.2并可供下载。

以下步骤应该有效:

  • 从下载选择1.4.2: https://github.com/koenpunt/chosen/releases
  • 如果您已在项目中选择了Chosen,请替换selected.jquery.js,selected.jquery.min.js和chosen.css
  • 使用以下代码使用新的create_option:

    $(function() {                 
    $(".chzn-select").chosen({
        create_option: true,            
        skip_no_results: true
    }); }); 
    

代码参考:https://github.com/harvesthq/chosen/pull/166