使用Angular和multi ui-select,选择框会显示不需要的"额外的"盒子(见图)。我该如何删除?
代码:
<ui-select multiple ng-model="definition.attachments" theme="bootstrap">
<ui-select-match >{{$item.name}}</ui-select-match>
<ui-select-choices repeat="template.id as template in templates">{{template.name}}</ui-select-choices>
</ui-select>
答案 0 :(得分:4)
这很可能是由于select.css
文件中未包含index.html
文件造成的。将以下内容添加到<head>
中的index.html
标记:
<link rel="stylesheet" href="path/to/select.css"/>