我正在使用jquery-typeahead作品的第一个演示示例“Country v1”:http://www.runningcoder.org/jquerytypeahead/demo/
$.typeahead({
input: '.js-typeahead-country_v1',
minLength: 1,
order: "desc",
dynamic:true,
source: {
data: data
},
callback: {
onInit: function(node) {
console.log('Typeahead Initiated on ' + node.selector);
}
}
});
https://jsfiddle.net/qz7dfsku/
当我选择其中一个选项时,我试图让建议框消失。
似乎添加了动态:true会破坏它,如果我将其设置为false则会起作用。
知道会发生什么事吗?
答案 0 :(得分:1)
已在2.10.2中修复。
https://github.com/running-coder/jquery-typeahead/issues/380
"由于在选择项目时发送额外请求#381,这是一种不受欢迎的行为,将尽快修补#34;
https://github.com/running-coder/jquery-typeahead/issues/381