我使用select2插件设计插入标签的输入框,如下所示:
HTML:
<input id="tags" class="text-input form-control" type="text" name="tags" size="24" placeholder="tags" >
JS :(在文档中)
$(document).ready(function () {
$("#tags").select2({
tags: ["red", "green", "blue"],
maximumInputLength: 10
});
});
这对我有用,并显示默认red, green,blue
下拉列表。但我需要从默认下拉列表中删除标签。我的意思是我在dropdwon中设计没有默认标签的输入。
怎么创造这个?
演示FIDDLE
答案 0 :(得分:1)
如果你要完成的是用户定义的,多选,没有默认值,你可以尝试以下方法:
$('#tagSelect').select2({
multiple: true,
tags: [],
formatNoMatches: null,
maximumInputLength: 10
});
这是一个更新的Fiddle。