前端之家收集整理的这篇文章主要介绍了
jquery – javascript select2允许的标签,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要允许
用户在选择中选择只允许的
标签。
目前我有:
$("input#id_txtcolor").select2({tags:["red","green","blue"]});
可以请你帮忙吗
从3.3开始,您可以在使用始终返回null的
标签时指定自己的createSearchChoice,从而防止创建默认选项。
$().select2({
createSearchChoice: function() { return null; },tags:...
});
原文链接:https://www.f2er.com/jquery/182078.html