当前位置:  开发笔记 > 编程语言 > 正文

如何使用typeahead.js显示"找不到结果"?

如何解决《如何使用typeahead.js显示"找不到结果"?》经验,为你挑选了1个好方法。

results not found当没有来自用户输入的建议时,我试图显示消息.typeahead.js显示输入建议,同时给文本字段输入..如果没有找到建议,那么如何显示results not found消息?.. version is typeahead.js 0.11.1



1> P. Frank..:

您可以检查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');
        }
    }

推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有