twitter-bootstrap-3 – Bootstrap tagsinput typeahead不工作

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap-3 – Bootstrap tagsinput typeahead不工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个使用bootstrap-tagsinputs插件的输入,问题是我想要它自动完成标签,而不是这样做! @H_502_2@标签部分工作完美;)但自动完成部分不

@H_502_2@任何人都有一个想法为什么?,这些示例与插件页面中的示例相同:

@H_502_2@http://timschlechter.github.io/bootstrap-tagsinput/examples/

@H_502_2@这是我的代码

<input id="tags-text-input"></input>

$("#tags-text-input").ready(function () {
            $("#tags-text-input").tagsinput();
            $("#tags-text-input").typeahead({
                typeahead: ["I'm done trying...","Jhon","Smith"]
            });
        });
@H_502_2@我已经包含了typeahead插件和tagsinput插件.我做错了什么?

@H_502_2@提前致谢.

解决方法

我想你需要在标签输入中设置类型头像,如下所示:
<input id="tags-text-input"></input>
$("#tags-text-input").ready(function () {
    $("#tags-text-input").tagsinput({
        typeahead: {
            source: ["I'm done trying...","Smith"]
        }
    });
});
原文链接:https://www.f2er.com/bootstrap/233781.html

猜你在找的Bootstrap相关文章