gpt4 book ai didi

autocomplete - 提交关于 Bootstrap typeahead() 自动完成的选择?

转载 作者:行者123 更新时间:2023-12-02 08:29:33 25 4
gpt4 key购买 nike

如何自动提交使用 Twitter Bootstrap typeahead() 所做的选择?

http://twitter.github.com/bootstrap/javascript.html#typeahead

最佳答案

有一种使用 updater 回调的简洁方法:

input.typeahead({
'source' : ['foo', 'bar'],
'updater' : function(item) {
this.$element[0].value = item;
this.$element[0].form.submit();
return item;
}
});

当用户选择一个选项(通过鼠标单击或键盘)时,回调将填充输入框并发送表单。

关于autocomplete - 提交关于 Bootstrap typeahead() 自动完成的选择?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9425024/

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