我正在使用select2 js 我只是使用默认功能,但默认搜索框显示在禁用模式。我无法输入任何内容。
我的代码是
<select id="type" name="type" class="form-control select2-use">
<option value="">select type</option>
<option value="U">User</option>
<option value="A">Admin</option>
</select>
$('.select2-use').select2({
placeholder: "Select",
allowClear: true
});
我在HTML页面中包含了select2.min.css和select2.min.js。
没有js错误。
我在Bootstrap模式div中使用它,我加载了一个HTML页面
答案 0 :(得分:2)
您的代码看起来不错:https://jsfiddle.net/3tfjn9zb/1/
您是否在引导模式中使用它?如果是这样:尝试从模态div中删除tabindex="-1"
。