5

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

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

4

1 回答 1

4

你试过了吗:

$('.typeahead').typeahead({
    source: function (query, typeahead) {
        return $.post('/typeahead', { query: query }, function (data) {
            return typeahead.process(data);
        });
    }
});
于 2012-05-21T11:55:56.273 回答