Twitter Typeahead。为什么.typeahead('val')返回错误的值?

时间:2016-03-15 21:49:53

标签: jquery typeahead.js

我正在使用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); }); 选项。

如何捕获原始查询字符串?

0 个答案:

没有答案