如何在selectize.js上使用首字母

时间:2015-08-19 09:43:11

标签: jquery selectize.js

有没有办法配置selectize.js来仅根据首字母而不是上下文搜索来获取结果?

Like this

1 个答案:

答案 0 :(得分:0)

可能有更好的方法,但这肯定会为你做到。首先,使用选择的本地副本而不是cdn。然后在sifter中更改以下行:

var scoreValue = function(value, token) {
    var score, pos;

    if (!value) return 0;
    value = String(value || '');
    pos = value.search(token.regex);
    if (pos === -1) return 0;
    score = 0; //This line got changed.
    if (pos === 0) score += 0.5;
    return score;
};

Here's a link to the line in github