我正在使用ui-select 0.13.2插件。这是问题部分的plunker。
<ui-select multiple autocomplete="off" name="colorName" id="colorId" ng-model="selected.colors" ng-required="true">
<ui-select-match placeholder="Select or search a color in the list...">{{$item.name}}<span class="style-color-block-temp" style='background-color:{{$item.colorHash}}'></span></ui-select-match>
<ui-select-choices repeat="color in colors | filter:$select.search">
{{color.name }} <span class="style-color-block" style='background-color:{{color.colorHash}}'></span>
</ui-select-choices>
</ui-select>
我有一个下拉列表,这在firefox和谷歌浏览器中运行良好。
这个浏览器正在给我自动建议,这使得我的下载工作正常。