Bootstrap   发布时间:2022-04-18  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了twitter-bootstrap – Twitter Bootstrap:没有匹配的Typeahead功能大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个添加新事物”表单,将“用户”与“事物”相关联.

我正在使用Twitter Bootstrap Typeahead在我输入时提供用户列表.
它工作正常,如果用户在列表中,我可以选择它.

但如果用户不存在,我想要显示“创新用户链接.

所以基本上,我需要在.typeahead()中某处使用某种形式的“无匹配”功能.我无解决这个问题.

解决方法

扩展typeahead类:
var newusertext = 'New user';
var newuserlink = '/add/user/0';

$.fn.typeahead.Constructor.prototype.process = function (items) {
      var that = this

      items = $.grep(items,function (item) {
        return that.matcher(item)
      })

      items = this.sorter(items)

      if (!items.length) {
         return this.rendernonmatch().show()
      }

      return this.render(items.slice(0,this.options.items)).show()
    } 


$.fn.typeahead.Constructor.prototype.rendernonmatch = function () {
      var that = this
      var items = new Array();
      items.push(newusertext)
      items = $(items).map(function (i,item) {
        i = $(that.options.item).attr('data-value',item)
        i.find('a').html(that.Highlighter(item))
        return i[0]
      })
      items.first().addClass('active')
      this.$menu.html(items)
      return this
    }

/* redirect to the registration page to add a new user */    
$.fn.typeahead.Constructor.prototype.updater = function (item) {
      if(item === newusertext){ window.LOCATIOn =  newuserlink; return}
      return item
    }

见:http://bootply.com/66630

大佬总结

以上是大佬教程为你收集整理的twitter-bootstrap – Twitter Bootstrap:没有匹配的Typeahead功能全部内容,希望文章能够帮你解决twitter-bootstrap – Twitter Bootstrap:没有匹配的Typeahead功能所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。