【发布时间】:2016-06-08 02:36:06
【问题描述】:
一旦用户使用鼠标单击选择了一个选项并进入开始搜索,我需要从 ui-select 输入中移除焦点。现在发生的情况是焦点仍然在 select 上,因此在单击 enter 时会打开下拉列表。
<ui-select id= "country" ng-model="ctry" name= "country" theme="bootstrap">
<ui-select-match >{{text || $select.selected.id}}</ui-select-match>
<ui-select-choices repeat="countryL in countryLookup | filter: $select.search">
<div ng-bind-html="countryL.id | highlight: $select.search"></div>
<small ng-bind-html="countryL.name | highlight: $select.search"></small>
</ui-select-choices>
【问题讨论】: