Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
typeahead 功能是否支持 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); }); } });