results not found
当没有来自用户输入的建议时,我试图显示消息.typeahead.js显示输入建议,同时给文本字段输入..如果没有找到建议,那么如何显示results not found
消息?.. version is typeahead.js 0.11.1
您可以检查empty
参数是否没有结果:
我已经编辑了上面的代码,以便它可以帮助其他人搜索相同的东西.
$('.typeahead').typeahead({ hint: false, highlight: true, minLength: 3, }, { name: 'firstnames', displayKey: 'value', source: firstnames.ttAdapter(), // this is your result variable templates: { empty: function(context){ // console.log(1) // put here your code when result not found $(".tt-dataset").text('No Results Found'); } }