3

使用 Angular 和多用户界面选择,选择框会显示一个不需要的“额外”框(见图)。我怎样才能删除这个?

在此处输入图像描述 代码:

      <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>
4

1 回答 1

4

这很可能是由于未能将select.css文件包含在您的index.html文件中造成的。将以下内容添加到您的<head>标签中index.html

<link rel="stylesheet" href="path/to/select.css"/>
于 2015-06-13T01:22:46.213 回答