jQuery-使用twitter bootstrap中的Typeahead 的时候如何用ajax动态获得数据?
关于twitter bootstrap的Typeahead :
http://twitter.github.com/bootstrap/javascript.html
目前我的需求是,提示的数据是动态获取,比如可以通过ajax请求获得。这样应该如何使用Typeahead 呢?最好不要动bootstrap的源码以方便以后升级。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
推荐一个改进版:
https://github.com/pwarelis/Ajax-Typeahead
如果怕影响升级,升级是记得更新下或者合并下就行了。想要这个功能就得有些取舍。
就我了解的 bootstrap目前没有让其支持ajax的方式。
你可以看看这个改进版:
https://gist.github.com/1866577
使用方法应该满足你的要求:
$('.typeahead').typeahead({
source: function (typeahead, query) {
return $.post('/typeahead', { query: query }, function (data) {
return typeahead.process(data);
});
}
});