0
我有這樣的代碼 -jQuery的自動完成devbridge noSuggestionNotice不工作
$(函數(){
var fruits = [
{ value: 'Apple',id: '123', data: 'Apple' },
{ value: 'Pear', id: '543', data: 'Pear' },
{ value: 'Carrot', id: '123', data: 'Carrot' },
{ value: 'Cherry', id: '234', data: 'Cherry' },
{ value: 'Banana', id: '543', data: 'Banana' },
{ value: 'Radish', id: '3423', data: 'Radish' }
];
$("#autocomplete").autocomplete({
lookup: fruits,
showNoSuggestionNotice:true,
noSuggestionNotice:"No Result found",
onSelect: function (suggestion) {
alert('You selected: ' + suggestion.value + ', ' + suggestion.data);
},
});
});
在上面的代碼中,noSuggestionNotice不工作,當沒有建議。
因爲我已經把很多的努力impliment它,我不能改變整個代碼。這裏是我正在使用的原始腳本 - https://www.devbridge.com/sourcery/components/jquery-autocomplete/ –
並提供了noSuggestionNotice函數。 –