type-head功能是否支持twitter-bootstrap 2.0.3版中的远程数据源?
打印功能http://twitter.github.com/bootstrap/javascript.html#typeahead的链接
最佳答案
你试过了吗:
原文链接:https://www.f2er.com/js/429578.html$('.typeahead').typeahead({
source: function (query,typeahead) {
return $.post('/typeahead',{ query: query },function (data) {
return typeahead.process(data);
});
}
});