javascript – twitter bootstrap typeahead是否支持远程数据源?

前端之家收集整理的这篇文章主要介绍了javascript – twitter bootstrap typeahead是否支持远程数据源?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

type-head功能是否支持twitter-bootstrap 2.0.3版中的远程数据源?

打印功能http://twitter.github.com/bootstrap/javascript.html#typeahead链接

最佳答案
你试过了吗:

$('.typeahead').typeahead({
    source: function (query,typeahead) {
        return $.post('/typeahead',{ query: query },function (data) {
            return typeahead.process(data);
        });
    }
});
原文链接:https://www.f2er.com/js/429578.html

猜你在找的JavaScript相关文章