//javascript
var customer = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('name'),
queryTokenizer: Bloodhound.tokenizers.whitespace,
prefetch: 'include/customer.json'
});
$('.typeahead').typeahead(null, {
name: 'customer',
display: 'name',
source: customer
});
//json
[
{"identity":"1","name":"Uzumaki Naruto"},
{"identity":"2","name":"Monkey D. Luffy"},
{"identity":"3","name":"Ichigo Kurosaki"}
]
//html
<input class="typeahead" type="text" name="customer"/>
是否可以在typeahead插件中搜索并显示&#39; name
&#39;当我提交表格时,它会给我{&#39; identity
&#39;的价值。顺便说一句,我使用0.11.1v的typeahead。 TIA
答案 0 :(得分:1)
要完成您想要的任务,您必须使用两个输入字段。
// html
<input type="text" name="customer_typeahead" class="typeahead"/>
<input type="hidden" name="customer" id="customer_identity" />
// typeahead code
$('.typeahead').typeahead(null, {
....
}).bind('typeahead:select', function(ev, suggestion) {
$('#company_identity').val(suggestion.identity);
});
这使得当您选择建议时,它将设置customer
输入的值。