使用TypeAhead 0.10.4,我希望在查询找不到结果时显示不可选择的消息。我该怎么做呢?我已经尝试将typeahead-no-results添加到我的输入控件中,但这似乎无法正常工作
<input type="text" runat="server" id="addressTypeAhead" typeahead-no-results="No address found">
$('.typeahead').on('typeahead:selected', function (evt, item) {
// set hidden var
$('*[data-name="addressId"]').val(item.identifier);
})
// Instantiate the Typeahead UI
$('.typeahead').typeahead({ minLength: 3 }, {
displayKey: 'value',
valueKey: 'identifier',
items: 5,
source: addresses.ttAdapter()
});
我从其他地方的Bloodhound那里得到地址
答案 0 :(得分:1)
这对我有用:
$('。typeahead')。typeahead({minLength:3},{ .... source:addresses.ttAdapter(),templates:{ 空:'没有找到结果。' } });