Select2 jQuery限制用户添加标签

时间:2015-10-08 16:52:22

标签: javascript jquery html jquery-select2

我的HTML代码

<select class="select2_tag_example" multiple>
</select>

我已经包含了select2所需的jquery和css,并在

下添加了初始化jQuery
$(".select2_tag_example").select2({
    tags: true,
    tokenSeparators: [',', ' '],
    allowClear: true,
});

我的选择成功转换为select2,但问题是我想限制一些不允许输入多个select2框的标签(字符串),如“摇滚”。

如何限制用户不允许输入一些单词(标签)。

建议接受,

提前致谢。

0 个答案:

没有答案