2

大家

我有一个文本输入,其内容应限制为一组值。这些值的形式为dependency1、dependency2、dependency3,因此它们形成一棵树。我想为了解此结构的该字段提供智能自动完成功能。例如,结构是这样的:

Engineering
  Electric
    Communication
    Power
  Electronic
    Computation
    Control
Economy
  Economy
  Accounting
Education
  Basic
  Language
    English
    French
  Sciences
    Math
    Physics

因此,一旦用户输入了足够多的字母,第一个依赖项就应该完成,并且应该准备好自动完成下一个依赖项。如果某些选项出现在弹出窗口中,它们应该仅限于我们所在的依赖项,而不是所有树。

你知道任何提供类似功能的 jQuery(或其他)库吗?

提前致谢。

4

2 回答 2

2

从另一个关于值分组的搜索中找到了一个小提琴。更多地工作 - 我认为这会很好 - 我只有一个级别的分组,但我认为可以添加更多:

http://jsfiddle.net/Kieveli/c1wgjLfv/3/

HTML:

<label for="search">Search: </label>
<input id="search">

CSS:

    .ui-autocomplete-category {
        font-weight: bold;
        padding: .2em .4em;
        margin: .8em 0 .2em;
        line-height: 1.5;
    }   
    .ui-menu .ui-menu-item {
        padding: 0em 1.5em;
        width: 220px;
        clear: both;
    }
    .Products {
        width: 220px;
    }
    .People {
        width: 220px;
    }

jQuery:

 $.widget( "custom.catcomplete", $.ui.autocomplete, {

     _create: function() {
        this._super();
        this.widget().menu( "option", "items", "> :not(.ui-autocomplete-category)" );
    },

     _renderMenu: function( ul, items ) {

         var that = this,
        currentCategory = "";

         $.each( items, function( index, item ) {
            var li;
            if ( item.category != currentCategory ) {
                ul.append( "<li class='ui-autocomplete-category " + item.category + "'>" + item.category + "</li>" );
                currentCategory = item.category;
            }

            li = that._renderItemData( ul, item );

            if ( item.category ) {
                li.attr( "aria-label", item.category + " : " + item.label );
            }
        });
    },

     _renderItem: function( ul, item ) {
        return $( "<li>" )
        .addClass(item.category)
        .attr( "data-value", item.value )
        .append( $( "<a>" ).text( item.label ) )
        .appendTo( ul );
    }
});

$(function() {
    var data = [
        { label: "annhhx10", category: "Products" },
        { label: "annk K12", category: "Products" },
        { label: "annttop C13", category: "Products" },
        { label: "bannttop C13", category: "Products" },
        { label: "cannttop C13", category: "Products" },
        { label: "dannttop C13", category: "Products" },
        { label: "eannttop C13", category: "Products" },
        { label: "fannttop C13", category: "Products" },
        { label: "gannttop C13", category: "Products" },
        { label: "hannttop C13", category: "Products" },
        { label: "iannttop C13", category: "Products" },
        { label: "jannttop C13", category: "Products" },
        { label: "anders andersson", category: "People" },
        { label: "andreas andersson", category: "People" },
        { label: "andreas johnson", category: "People" },
        { label: "bandreas johnson", category: "People" },
        { label: "candreas johnson", category: "People" },
        { label: "dandreas johnson", category: "People" },
        { label: "eandreas johnson", category: "People" },
        { label: "fandreas johnson", category: "People" },
        { label: "gandreas johnson", category: "People" },
    ];

    $( "#search" ).catcomplete({
        delay: 0,
        source: data
    });
});
于 2015-06-24T13:57:17.677 回答
-3

不完全是应该在 SO 上提出的问题类型,但是有一个名为 jQuery-UI 的插件,它依赖于 jQuery,它内置了一个自动完成插件。看看:

http://jqueryui.com/demos/autocomplete/

于 2012-07-11T11:53:01.023 回答