selectize.js – 使用bootstrap3 input-group-addon height选择selectize

我是html,javascript,bootstrap,selectize的新手. glyphicon的高度未正确呈现.
我哪里错了,请帮忙.

<!DOCTYPE html>
<html lang="en">
 <head>
  <Meta charset="utf-8">
  <Meta http-equiv="X-UA-Compatible" content="IE=edge">
  <Meta name="viewport" content="width=device-width,initial-scale=1">
  <title>My Shop!</title>
  <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" type="text/css">
  <link href="https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.4/css/selectize.bootstrap3.css" rel="stylesheet" type="text/css">
  <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.4/js/standalone/selectize.js"></script>
 </head>
 <body>
   <div class="input-group">
    <span class="input-group-addon">
     <i class="glyphicon glyphicon-plus"></i>
    </span>
    <select class="form-control" id="txnParty">
     <option>one</option>
     <option>two</option>
    </select>
   </div>
  <script>
  $('select').selectize();
  </script>
 </body>
</html>

enter image description here

解决方法

试试这种方式:

$('#select').selectize({
    inputClass: 'form-control selectize-input',dropdownParent: "body"
});

见:https://github.com/selectize/selectize.js/issues/600

相关文章

前言 做过web项目开发的人对layer弹层组件肯定不陌生,作为l...
前言 前端表单校验是过滤无效数据、假数据、有毒数据的第一步...
前言 图片上传是web项目常见的需求,我基于之前的博客的代码...
前言 导出Excel文件这个功能,通常都是在后端实现返回前端一...
前言 众所周知,js是单线程的,从上往下,从左往右依次执行,...
前言 项目开发中,我们可能会碰到这样的需求:select标签,禁...