gpt4 book ai didi

typeahead.js 获取选定的数据

转载 作者:行者123 更新时间:2023-12-03 14:32:26 24 4
gpt4 key购买 nike

我正在尝试使用 Twitter typeahead.js选择后返回一个数据。从我对文档的理解来看,代码应该看起来像

$('.selector').typeahead({
name: 'identifier',
local: localObjectsArray
}).on('autocompleted', function(item){
alert(JSON.stringify(item));
});

然而这行不通。检测预先输入事件的正确方法是什么?

最佳答案

选择后,所以你需要typeahead:selected :

$('.selector').typeahead({
name: 'identifier',
local: localObjectsArray
}).on('typeahead:selected', function (obj, datum) {
console.log(obj);
console.log(datum);
});

希望能帮助到你。

关于typeahead.js 获取选定的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18019653/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com