如何更改Select2默认新标签键“tab”到“space”?

时间:2013-05-05 19:03:59

标签: javascript jquery jquery-select2

我正在使用Select2的标签支持我的标签编辑器,我知道你可以通过输入标签添加一个不存在的标签,然后按“tab”键

我的问题是:我不希望任何标签包含空格,例如“空间标签”, 那么有没有办法将“space”键设置为新的标签触发器?

1 个答案:

答案 0 :(得分:8)

(在问题编辑中回答。转换为社区维基回答。请参阅Question with no answers, but issue solved in the comments (or extended in chat)

OP写道:

  

经过一番挖掘后,我通过

解决了我的问题
$("#e20").select2({
        tags:["red", "green", "blue"],
        tokenSeparators: [",", " "]
 });
  

关键点是tokenSeparators属性。

     

document of Select2很有用。