请看这个:
http://ghiden.github.io/angucomplete-alt/
我正在使用示例1。
如何显示下拉当我点击输入?
请参阅:
当我按“u”键时。显示下拉列表。但我需要当我点击输入下拉列表时显示。
答案 0 :(得分:0)
您需要像这样修补angucomplete-alt的onFocusHandler
:
scope.onFocusHandler = function() {
if (scope.focusIn) scope.focusIn()
if (scope.minlength == 0) scope.showDropdown = true
}