我正在使用Twitter Typeahead,除了一个问题外,它对我来说效果很好。当我从列表中选择一个建议时,我想捕获并渲染用于创建建议列表的字符串。我做了以下事情:
function go(id){
var xhr = getXhr();
// ....
}
我希望查询是我输入的字符串,但它是用于配置我的typeahead实例的$search_input.bind('typeahead:select', function(ev, suggestion) {
var query = $(this).typeahead('val');
console.log('your query ' + query);
});
选项。
如何捕获原始查询字符串?