我正在尝试使用 Twitter Bootstrap 的 typeahead javascript 的更新程序选项来检索同一行的多个值,然后在输入框的同一选定行上显示一列,在另一列上显示另一列。不幸的是,我似乎无法找出下面的代码如何无法更新具有 id 的输入框ProductName
。
$('#ProductName').typeahead({
source: function(query,process){
var query = {query:query};
return $.post('/products/ajax_search_product_by_name',query,function(data){
return process(data.options);
},"json");
},
minLength: 3,
items: 50,
updater: function(item){
lastIndex = item.lastIndexOf('-');
length = item.length;
var product_id;
var product_name;
product_id = item.substr(lastIndex + 1, length);
product_name = item.substr(0,lastIndex);
document.getElementById('ProductName').value = product_name;
console.log(product_name);
}
我在文档中读到该项目具有预先输入实例的范围:
The method used to return selected item. Accepts a single argument, the item and has the scope of the typeahead instance.
所以我尝试this
不使用 DOM 选择器,但它也不起作用。我也尝试了 jQuery 的方式,$('#ProductName').val(product_name)
但没有运气。
我在这里错过了什么吗?