我可以阻止bootstrap typeahead填充/清除元素吗?
的示例注意我是如何使用自己的代码更新元素的。当警报出现时,您将看到它有效,但随后元素值被删除。我想阻止typeahead更新元素。
答案 0 :(得分:0)
通常,updater
函数返回项目..
updater: function (item) {
/* do whatever you want with the selected item */
return item;
},
因此,如果您没有updater
函数返回该项,则不会设置输入..
updater: function (item) {
/* do whatever you want with the selected item */
alert("selected "+item);
},