美文网首页
jquery.chosen.js实现模糊搜索

jquery.chosen.js实现模糊搜索

作者: AmilyHao | 来源:发表于2017-05-23 18:14 被阅读0次

    jquery.chosen.js查询时,chosen默认从第一个字符搜索,所以写中间的字符搜索时,是搜索不出来的

    若想实现中间字符的模糊查询,下面的js中(search_contains属性为true即可)可以让chosen搜索选项的中间及末尾字符

    no_results_text是搜索不到内容时,显示的提示语

    placeholder_text是下拉选项默认显示的文字

    disable_search_threshold是select的option选项大于等于此值,才会显示查询的文本框

    jQuery(".chosen").chosen({

    no_results_text: "My language message.",

    placeholder_text : "My language message.",

    search_contains: true,

    disable_search_threshold: 10

    });

    或者是直接将jquery.chosen.js的源码修改了

    将this.search_contains = this.options.search_contains || !1

    改为this.search_contains = true || !1

    网速查到的资料,记录一下,以供不时之需!

    相关文章

      网友评论

          本文标题:jquery.chosen.js实现模糊搜索

          本文链接:https://www.haomeiwen.com/subject/ebsgxxtx.html