请查看以下内容:
http://ghiden.github.io/angucomplete-alt/
我使用的是示例1。
当我点击输入时如何显示下拉菜单?
请参阅:
当我按"u“键的时候。显示了下拉列表。但我需要当我点击输入下拉菜单时显示。
发布于 2020-01-09 18:25:07
你需要像这样修补angucomplete alt的onFocusHandler
:
scope.onFocusHandler = function() {
if (scope.focusIn) scope.focusIn()
if (scope.minlength == 0) scope.showDropdown = true
}
https://stackoverflow.com/questions/25561296
复制相似问题