使用bootstrap taginput和typeahead - 选择阴影的奇怪行为?

时间:2017-10-31 09:53:45

标签: css twitter-bootstrap tags bootstrap-typeahead

我想在表单上实现标记输入,并自动建议使用可用标记;所以这些是我正在使用的库:

这是我一起初始化两个库的方法:

$(document).ready(function() {
    $('input#tags').tagsinput({
        typeahead: {
            source: ["mysql-server", "apache", "php", "nginx", "phpmyadmin"]
        }
    });
});

当我开始输入ph时,它开始建议两个可用的标签,如下所示:

enter image description here

当我做出选择时,例如php - 发生这种情况:

enter image description here

所有标签都会发生这种情况,它会执行标记,然后是建议中所选标记的阴影版本。

有什么想法吗?

0 个答案:

没有答案