关于这个问题,有一些答案,但是我搜索了很多之后都没有找到解决方案。我希望有人知道这一点。现在,我只是碰到了Internet Explorer 11浏览器。因此,如果我选择选择标签,则下拉列表将打开,但是如果在外部单击,它将不会关闭。
感谢您的时间(我使用了最新版本的select2下拉插件,现在才检查)
在搜索字段select2下拉列表<select>
中添加占位符>
$('select').select2().on('select2:open', function(e){ $('.select2-search__field').attr('placeholder', 'Search...'); })
HTML
<select name="country" class="form-control">
<option value='' selected>Select country</option>
<option value="Test">Test</option>
</select>
关于这个问题,有一些答案,但是我搜索了很多之后都没有找到解决方案。我希望有人知道这一点。现在,我只是碰到了Internet Explorer 11浏览器。因此,如果我选择...
尝试使用blur
事件关闭下拉列表。