显示twitter bootstrap typeahead插件的自定义页脚

时间:2013-04-06 09:16:08

标签: search twitter-bootstrap customization typeahead.js

我正在尝试使用bootstrap和typeahead插件在twitter上创建类似搜索功能的东西。

到目前为止,我已经成功地根据类型(人/等)显示结果,方法是编译ajax调用的结果列表并在'highlighter'函数中引用它。

我想要做的是为下拉菜单显示一个自定义页脚,其结果如twitter('查看所有结果','搜索所有人进行测试'等)。

Twitter search

1 个答案:

答案 0 :(得分:3)

$('.typeahed').typeahed(null, {
    name: 'suggestions',
    templates: {
        footer: Handlebars.compile('Results for {{ query }}'),
    }
});