angularjs下拉列表的功能问题

时间:2016-06-27 05:55:55

标签: javascript angularjs twitter-bootstrap

我在角度使用多选下拉列表。面临的问题是,只要在下拉列表中选择任何选项,就会自动显示下拉内容的顶部。 对于前这里我有一个toList()https://plnkr.co/edit/eGVkSPJRpddeGxcIogdd?p=preview,当我从下拉列表中选中/取消选中本田选项时,会自动显示下拉列表的顶部。

如何让它保持我从下拉列表中选择的选项。因此,用户可以轻松检查/取消选中。

1 个答案:

答案 0 :(得分:1)

您需要编辑multiselect.js指令,这是从@ 252行所需的更改

  scope.focus = function focus() {
    var searchBox = element.find('input')[0];
    //searchBox.focus();
  }

It cause the move focus up.